blob: dd99b55588ccdbd99406e96f6438e743d2a9c369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
### Get same RapidJSON as Northstar
if (RapidJSON_FOUND)
return()
endif()
find_package(NorthstarPluginABI REQUIRED)
check_init_submodule(${NS_LAUNCHER_DIR}/thirdparty/rapidjson)
add_library(rapidjson_header INTERFACE)
target_include_directories(rapidjson_header INTERFACE "${NS_LAUNCHER_DIR}/thirdparty")
target_include_directories(rapidjson_header INTERFACE "${NS_LAUNCHER_DIR}/thirdparty/rapidjson")
set(RapidJSON_FOUND 1)
|