2022-09-23 13:11:50 +03:00
|
|
|
@PACKAGE_INIT@
|
|
|
|
|
|
2018-09-26 20:08:49 +03:00
|
|
|
include(FindPackageHandleStandardArgs)
|
2022-09-23 13:11:50 +03:00
|
|
|
set(nlohmann_json_CONFIG ${CMAKE_CURRENT_LIST_FILE})
|
|
|
|
|
find_package_handle_standard_args(nlohmann_json CONFIG_MODE)
|
2018-09-26 20:08:49 +03:00
|
|
|
|
2022-09-23 13:11:50 +03:00
|
|
|
if(NOT TARGET nlohmann_json::nlohmann_json)
|
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/nlohmann_jsonTargets.cmake")
|
|
|
|
|
if((NOT TARGET nlohmann_json)
|
|
|
|
|
AND (NOT nlohmann_json_FIND_VERSION OR nlohmann_json_FIND_VERSION VERSION_LESS 3.2.0))
|
|
|
|
|
add_library(nlohmann_json INTERFACE IMPORTED)
|
|
|
|
|
set_target_properties(nlohmann_json PROPERTIES INTERFACE_LINK_LIBRARIES nlohmann_json::nlohmann_json)
|
2018-09-18 20:59:19 +03:00
|
|
|
endif()
|
2018-04-09 18:32:18 +03:00
|
|
|
endif()
|
2022-09-23 13:11:50 +03:00
|
|
|
|
|
|
|
|
check_required_components(nlohmann_json)
|