aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/json11/CONTROL3
-rw-r--r--ports/json11/portfile.cmake29
2 files changed, 32 insertions, 0 deletions
diff --git a/ports/json11/CONTROL b/ports/json11/CONTROL
new file mode 100644
index 000000000..3145a079a
--- /dev/null
+++ b/ports/json11/CONTROL
@@ -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.
diff --git a/ports/json11/portfile.cmake b/ports/json11/portfile.cmake
new file mode 100644
index 000000000..533c0457c
--- /dev/null
+++ b/ports/json11/portfile.cmake
@@ -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)