
This way, users can call target_link_libraries against the imported target, which is the recommended way of doing things.
22 lines
832 B
CMake
22 lines
832 B
CMake
################################################################################
|
|
# RapidJSON source dir
|
|
set( RapidJSON_SOURCE_DIR "@CONFIG_SOURCE_DIR@")
|
|
|
|
################################################################################
|
|
# RapidJSON build dir
|
|
set( RapidJSON_DIR "@CONFIG_DIR@")
|
|
|
|
################################################################################
|
|
# Compute paths
|
|
get_filename_component(RapidJSON_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
|
|
set( RapidJSON_INCLUDE_DIR "@RapidJSON_INCLUDE_DIR@" )
|
|
set( RapidJSON_INCLUDE_DIRS "@RapidJSON_INCLUDE_DIR@" )
|
|
message(STATUS "RapidJSON found. Headers: ${RapidJSON_INCLUDE_DIRS}")
|
|
|
|
if(NOT TARGET rapidjson)
|
|
add_library(rapidjson INTERFACE IMPORTED)
|
|
set_property(TARGET rapidjson PROPERTY
|
|
INTERFACE_INCLUDE_DIRECTORIES ${RapidJSON_INCLUDE_DIRS})
|
|
endif()
|