mirror of
https://github.com/cemu-project/vcpkg.git
synced 2024-11-23 19:29:49 +00:00
4a12817691
* Update jsoncpp 1.9.2 Using implicit int to float conversion is fixed from jsoncpp 1.9.2 version. * Update Control update jsoncpp 1.9.2 * remove deprecated function include(vcpkg_common_functions) * [jsoncpp] Allow disabling examples Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
43 lines
1.2 KiB
CMake
43 lines
1.2 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO open-source-parsers/jsoncpp
|
|
REF 1.9.2
|
|
SHA512 7c7188199d62ae040d458d507ba62f0370c53f39c580760ee5485cae5c08e5ced0c9aea7c14f54dfd041999a7291e4d0f67f8ccd8b1030622c85590774688640
|
|
HEAD_REF master
|
|
PATCHES
|
|
allow-disable-examples.patch
|
|
)
|
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
set(JSONCPP_STATIC ON)
|
|
else()
|
|
set(JSONCPP_STATIC OFF)
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DJSONCPP_WITH_CMAKE_PACKAGE=ON
|
|
-DBUILD_STATIC_LIBS=${JSONCPP_STATIC}
|
|
-DJSONCPP_WITH_PKGCONFIG_SUPPORT=OFF
|
|
-DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF
|
|
-DJSONCPP_WITH_TESTS=OFF
|
|
-DJSONCPP_WITH_EXAMPLE=OFF
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
# Fix CMake files
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/jsoncpp)
|
|
|
|
# Remove includes in debug
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
# Handle copyright
|
|
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/jsoncpp)
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/jsoncpp/LICENSE ${CURRENT_PACKAGES_DIR}/share/jsoncpp/copyright)
|
|
|
|
# Copy pdb files
|
|
vcpkg_copy_pdbs()
|