vcpkg/ports/libsigcpp/portfile.cmake
6ziv 4bf41e29cf
[libsigcpp]fix libsigcpp include path (#29507)
* fix libsigcpp include path

* update version files

* fix indent

* change version number back

* fix pc

* rerun x-add-version

* Update license and upstream version

* revert and re-generate version files

* Update ports/libsigcpp/portfile.cmake

Co-authored-by: jim wang <122244446+jimwang118@users.noreply.github.com>

* Update version again....

---------

Co-authored-by: jim wang <122244446+jimwang118@users.noreply.github.com>
2023-02-09 14:25:22 -08:00

27 lines
960 B
CMake

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO libsigcplusplus/libsigcplusplus
REF "${VERSION}"
SHA512 8b80f0988daea4eb2c827be57de21167f54a9bf3e9704d64d17d12aef064d8ad87d00f95ce4b5add7666452561c5ca42aa45cf677e54068974a4ea813af3b235
HEAD_REF master
PATCHES
disable_tests_enable_static_build.patch
fix-shared-windows-build.patch
fix_include_path.patch
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
)
vcpkg_cmake_install()
vcpkg_copy_pdbs()
vcpkg_fixup_pkgconfig()
vcpkg_cmake_config_fixup(PACKAGE_NAME sigc++-3 CONFIG_PATH lib/cmake/sigc++-3)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/sigc++config.h" "ifdef BUILD_SHARED" "if 1")
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)