diff options
| author | NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> | 2021-05-27 05:53:59 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-26 14:53:59 -0700 |
| commit | b7147872b2fb1e1b2f5896ad95d68112808fc468 (patch) | |
| tree | 6a80f0ecc573b1270bd1a028833757fd5eb18af4 /ports/simdjson | |
| parent | 2462a956c8068e4dab8aa8bbe9a406016106e188 (diff) | |
| download | vcpkg-b7147872b2fb1e1b2f5896ad95d68112808fc468.tar.gz vcpkg-b7147872b2fb1e1b2f5896ad95d68112808fc468.zip | |
[simdjson] Fix dynamic usage (#16105)
* [simdjson] Update to 0.8.1
* Update versions
* Update to 0.8.2
* Update versions
* Format vcpkg.json
* Update versions
* Update versions/s-/simdjson.json
Diffstat (limited to 'ports/simdjson')
| -rw-r--r-- | ports/simdjson/portfile.cmake | 9 | ||||
| -rw-r--r-- | ports/simdjson/vcpkg.json | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ports/simdjson/portfile.cmake b/ports/simdjson/portfile.cmake index 7c8677759..e3e701690 100644 --- a/ports/simdjson/portfile.cmake +++ b/ports/simdjson/portfile.cmake @@ -26,6 +26,13 @@ vcpkg_copy_pdbs() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
+if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
+ vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/simdjson.h
+ "#if SIMDJSON_USING_LIBRARY"
+ "#if 1"
+ )
+endif()
+
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
-file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
+file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
\ No newline at end of file diff --git a/ports/simdjson/vcpkg.json b/ports/simdjson/vcpkg.json index 4a8e88783..0eb3ed90d 100644 --- a/ports/simdjson/vcpkg.json +++ b/ports/simdjson/vcpkg.json @@ -1,6 +1,7 @@ { "name": "simdjson", "version": "0.9.2", + "port-version": 1, "description": "A extremely fast JSON library that can parse gigabytes of JSON per second", "homepage": "https://simdjson.org/", "license": "Apache-2.0", |
