25 lines
806 B
CMake
25 lines
806 B
CMake
# Load the debug and release variables
|
|
file(GLOB DATA_FILES "${CMAKE_CURRENT_LIST_DIR}/spdlog-*-data.cmake")
|
|
|
|
foreach(f ${DATA_FILES})
|
|
include(${f})
|
|
endforeach()
|
|
|
|
# Create the targets for all the components
|
|
foreach(_COMPONENT ${spdlog_COMPONENT_NAMES} )
|
|
if(NOT TARGET ${_COMPONENT})
|
|
add_library(${_COMPONENT} INTERFACE IMPORTED)
|
|
message(${spdlog_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'")
|
|
endif()
|
|
endforeach()
|
|
|
|
if(NOT TARGET spdlog::spdlog)
|
|
add_library(spdlog::spdlog INTERFACE IMPORTED)
|
|
message(${spdlog_MESSAGE_MODE} "Conan: Target declared 'spdlog::spdlog'")
|
|
endif()
|
|
# Load the debug and release library finders
|
|
file(GLOB CONFIG_FILES "${CMAKE_CURRENT_LIST_DIR}/spdlog-Target-*.cmake")
|
|
|
|
foreach(f ${CONFIG_FILES})
|
|
include(${f})
|
|
endforeach() |