mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-26 00:18:04 +08:00
34 lines
951 B
CMake
34 lines
951 B
CMake
|
include(vcpkg_common_functions)
|
||
|
|
||
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
||
|
message("parson only supports static linkage")
|
||
|
set(VCPKG_LIBRARY_LINKAGE "static")
|
||
|
endif()
|
||
|
|
||
|
vcpkg_from_github(
|
||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||
|
REPO kgabis/parson
|
||
|
REF 387c5665f6b20faa535a7f782dcaa49390963366
|
||
|
SHA512 755d1351c2176ac75bb865e83cbbd3b8f6b3a5797cccd96e512e474100fbdaacb7d00eb857ebc4478aad40672baeafdecb5d87c26eaa16f43ef5559a0a56f431
|
||
|
HEAD_REF master
|
||
|
)
|
||
|
|
||
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
|
||
|
|
||
|
vcpkg_configure_cmake(
|
||
|
SOURCE_PATH ${SOURCE_PATH}
|
||
|
PREFER_NINJA
|
||
|
)
|
||
|
|
||
|
vcpkg_install_cmake()
|
||
|
|
||
|
file(COPY ${SOURCE_PATH}/parson.h DESTINATION ${CURRENT_PACKAGES_DIR}/include)
|
||
|
|
||
|
vcpkg_fixup_cmake_targets(CONFIG_PATH share/unofficial-parson TARGET_PATH share/unofficial-parson)
|
||
|
|
||
|
file(INSTALL
|
||
|
${SOURCE_PATH}/LICENSE
|
||
|
DESTINATION ${CURRENT_PACKAGES_DIR}/share/parson RENAME copyright)
|
||
|
|
||
|
vcpkg_copy_pdbs()
|