2016-11-04 18:59:04 +00:00
|
|
|
# Whether the utils lib was build.
|
|
|
|
set(CJSON_UTILS_FOUND @ENABLE_CJSON_UTILS@)
|
|
|
|
|
|
|
|
# The include directories used by cJSON
|
2016-11-06 08:35:53 +00:00
|
|
|
set(CJSON_INCLUDE_DIRS "@prefix@/@includedir@")
|
2016-11-06 08:47:33 +00:00
|
|
|
set(CJSON_INCLUDE_DIR "@prefix@/@includedir@")
|
2016-11-04 18:59:04 +00:00
|
|
|
|
|
|
|
get_filename_component(_dir "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
2016-11-06 08:35:53 +00:00
|
|
|
|
|
|
|
# The cJSON library
|
|
|
|
set(CJSON_LIBRARY "@CJSON_LIB@")
|
2016-11-06 17:13:38 +00:00
|
|
|
if(@ENABLE_TARGET_EXPORT@)
|
|
|
|
# Include the target
|
|
|
|
include("${_dir}/cjson.cmake")
|
|
|
|
endif()
|
2016-11-06 08:35:53 +00:00
|
|
|
|
|
|
|
if(CJSON_UTILS_FOUND)
|
|
|
|
# The cJSON utils library
|
|
|
|
set(CJSON_UTILS_LIBRARY @CJSON_UTILS_LIB@)
|
|
|
|
# All cJSON libraries
|
|
|
|
set(CJSON_LIBRARIES "@CJSON_UTILS_LIB@" "@CJSON_LIB@")
|
2016-11-06 17:13:38 +00:00
|
|
|
if(@ENABLE_TARGET_EXPORT@)
|
|
|
|
# Include the target
|
|
|
|
include("${_dir}/cjson_utils.cmake")
|
|
|
|
endif()
|
2016-11-06 08:35:53 +00:00
|
|
|
else()
|
|
|
|
# All cJSON libraries
|
|
|
|
set(CJSON_LIBRARIES "@CJSON_LIB@")
|
|
|
|
endif()
|