[json11] Initial json11 port. (#3673)

* [json11] Initial json11 port.

* [json11] Adjust version due to lack of upstream version scheme
This commit is contained in:
Daniel Santana 2018-06-16 23:53:57 +01:00 committed by Robert Schumacher
parent f747914974
commit 0bf67a9047
2 changed files with 32 additions and 0 deletions

3
ports/json11/CONTROL Normal file
View File

@ -0,0 +1,3 @@
Source: json11
Version: 2017-06-20
Description: json11 is a tiny JSON library for C++11, providing JSON parsing and serialization.

View File

@ -0,0 +1,29 @@
include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO dropbox/json11
REF ec4e45219af1d7cde3d58b49ed762376fccf1ace
SHA512 2129e048d8dee027dc1ba789d9901e017b7d698465e15236802ef68639161e1cc7c8665d5f50079333801717fd41ffbe2cb90fa2165b9a85629e8ced8f2b3cd8
HEAD_REF master
)
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
message(STATUS "Warning: Dynamic building not supported.")
set(VCPKG_LIBRARY_LINKAGE static)
endif()
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DJSON11_BUILD_TESTS:BOOL=OFF
)
vcpkg_install_cmake()
vcpkg_copy_pdbs()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
# Handle copyright
file(COPY ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/json11)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/json11/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/json11/copyright)