vcpkg/ports/libredwg/fix_dependency.patch

27 lines
865 B
Diff
Raw Normal View History

2023-03-20 15:12:34 +08:00
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2e854f2..ec2ec1d 100644
2023-03-20 15:12:34 +08:00
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -282,6 +282,8 @@ target_include_directories(${redwg} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>)
2023-03-20 15:12:34 +08:00
+find_path(JSMN_INCLUDE_DIRS "jsmn.h")
+target_include_directories(${redwg} PRIVATE ${JSMN_INCLUDE_DIRS})
link_libraries(${redwg} ${LIBS} ${CMAKE_THREAD_LIBS_INIT})
if(NOT LIBREDWG_LIBONLY)
diff --git a/src/in_json.c b/src/in_json.c
index d66f1ab..724505b 100644
--- a/src/in_json.c
+++ b/src/in_json.c
@@ -51,7 +51,7 @@ static unsigned int loglevel;
// In strict mode an object or array can't become a key
// In strict mode primitives are: numbers and booleans
#undef JSMN_STRICT
-#include "../jsmn/jsmn.h"
+#include "jsmn.h"
typedef struct jsmntokens
{