mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 00:39:00 +08:00
08697ad73d
* Update rttr library to 0.9.6. (fixes #5710) * Add log message for not supported platform. (see #5710)
50 lines
1.5 KiB
CMake
50 lines
1.5 KiB
CMake
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
message("Rttr only supports dynamic library linkage")
|
|
set(VCPKG_LIBRARY_LINKAGE "dynamic")
|
|
endif()
|
|
if(VCPKG_CRT_LINKAGE STREQUAL "static")
|
|
message(FATAL_ERROR "Rttr only supports dynamic library linkage, so cannot be built with static CRT")
|
|
endif()
|
|
|
|
include(vcpkg_common_functions)
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO rttrorg/rttr
|
|
REF v0.9.6
|
|
SHA512 5c94f037b319568d351ee6d25f1404adce00b40598dce4a331789d5357c059e50aae3894f90e60d37307b7e96f4672ae09d3798bbe47f796ef2044f1ac6f9e50
|
|
HEAD_REF master
|
|
PATCHES
|
|
fix-directory-output.patch
|
|
remove-owner-read-perms.patch
|
|
)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DBUILD_BENCHMARKS=OFF
|
|
-DBUILD_UNIT_TESTS=OFF
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
if(UNIX)
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH share/rttr/cmake)
|
|
elseif(WIN32)
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH cmake)
|
|
else()
|
|
message(FATAL_ERROR "RTTR does not support this platform")
|
|
endif()
|
|
|
|
#Handle copyright
|
|
file(COPY ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/rttr)
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/rttr/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/rttr/copyright)
|
|
file(REMOVE_RECURSE
|
|
${CURRENT_PACKAGES_DIR}/debug/include
|
|
${CURRENT_PACKAGES_DIR}/debug/share
|
|
${CURRENT_PACKAGES_DIR}/debug/README.md
|
|
${CURRENT_PACKAGES_DIR}/debug/LICENSE.txt
|
|
${CURRENT_PACKAGES_DIR}/LICENSE.txt
|
|
${CURRENT_PACKAGES_DIR}/README.md
|
|
)
|