You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/vendor/CMakeLists.txt

26 lines
597 B
CMake

#
# External libraries
#
#
# Most of these libraries are used for running comparison benchmarks against
# other logging libraries.
if(IS_DIRECTORY zf_log)
add_subdirectory(zf_log)
endif()
if(IS_DIRECTORY glog)
add_subdirectory(glog)
endif()
if(IS_DIRECTORY easyloggingpp)
add_library(easylogging INTERFACE)
set(SPDLOG_VENDORED_EASYLOGGING_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/easyloggingpp" CACHE INTERNAL "" FORCE)
target_include_directories(easylogging INTERFACE "${SPDLOG_VENDORED_EASYLOGGING_ROOT}/src")
endif()
if(IS_DIRECTORY g3log)
add_subdirectory(g3log)
endif()