2023-03-20 15:12:34 +08:00
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
2024-02-22 14:49:26 +08:00
|
|
|
index 2e854f2..ec2ec1d 100644
|
2023-03-20 15:12:34 +08:00
|
|
|
--- a/CMakeLists.txt
|
|
|
|
+++ b/CMakeLists.txt
|
2024-02-22 14:49:26 +08:00
|
|
|
@@ -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
|
|
|
|
{
|