mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:29:11 +08:00
82167226dd
* [jsonnet] Added a patch file to incorporate md5.cpp into libjsonnet * [jsonnet] increment port version * [jsonnet] update version record
43 lines
1.5 KiB
Diff
43 lines
1.5 KiB
Diff
diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt
|
|
index d4e77a8..5d36314 100644
|
|
--- a/core/CMakeLists.txt
|
|
+++ b/core/CMakeLists.txt
|
|
@@ -15,7 +15,8 @@ set(LIBJSONNET_HEADERS
|
|
static_error.h
|
|
string_utils.h
|
|
unicode.h
|
|
- vm.h)
|
|
+ vm.h
|
|
+ ../third_party/md5/md5.h)
|
|
|
|
set(LIBJSONNET_SOURCE
|
|
desugarer.cpp
|
|
@@ -26,12 +27,13 @@ set(LIBJSONNET_SOURCE
|
|
pass.cpp
|
|
static_analysis.cpp
|
|
string_utils.cpp
|
|
- vm.cpp)
|
|
+ vm.cpp
|
|
+ ../third_party/md5/md5.cpp)
|
|
|
|
if (BUILD_SHARED_BINARIES)
|
|
add_library(libjsonnet ${LIBJSONNET_HEADERS} ${LIBJSONNET_SOURCE})
|
|
-add_dependencies(libjsonnet md5 stdlib)
|
|
-target_link_libraries(libjsonnet md5 nlohmann_json::nlohmann_json)
|
|
+add_dependencies(libjsonnet stdlib)
|
|
+target_link_libraries(libjsonnet nlohmann_json::nlohmann_json)
|
|
|
|
file(STRINGS ${CMAKE_CURRENT_SOURCE_DIR}/../include/libjsonnet.h JSONNET_VERSION_DEF
|
|
REGEX "[#]define[ \t]+LIB_JSONNET_VERSION[ \t]+")
|
|
@@ -54,8 +56,8 @@ endif()
|
|
if (BUILD_STATIC_LIBS)
|
|
# Static library for jsonnet command-line tool.
|
|
add_library(libjsonnet_static STATIC ${LIBJSONNET_SOURCE})
|
|
- add_dependencies(libjsonnet_static md5 stdlib)
|
|
- target_link_libraries(libjsonnet_static md5 nlohmann_json::nlohmann_json)
|
|
+ add_dependencies(libjsonnet_static stdlib)
|
|
+ target_link_libraries(libjsonnet_static nlohmann_json::nlohmann_json)
|
|
set_target_properties(libjsonnet_static PROPERTIES OUTPUT_NAME jsonnet)
|
|
install(TARGETS libjsonnet_static DESTINATION "${CMAKE_INSTALL_LIBDIR}")
|
|
endif()
|