2016-05-05 11:46:30 +08:00
|
|
|
#
|
|
|
|
# External libraries
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Most of these libraries are used for running comparison benchmarks against
|
|
|
|
# other logging libraries.
|
|
|
|
|
|
|
|
add_subdirectory(zf_log)
|
|
|
|
|
2016-05-05 12:33:38 +08:00
|
|
|
add_subdirectory(glog)
|
2016-05-05 11:46:30 +08:00
|
|
|
|
|
|
|
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")
|
|
|
|
|
2016-05-05 12:33:38 +08:00
|
|
|
add_subdirectory(g3log)
|
|
|
|
|
|
|
|
|
2016-05-05 11:46:30 +08:00
|
|
|
#add_library(zflog INTERFACE)
|
|
|
|
#set(SPDLOG_VENDORED_ZFLOG_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/zf_log" CACHE INTERNAL "" FORCE)
|
|
|
|
#target_include_directories(zflog INTERFACE "${SPDLOG_VENDORED_ZFLOG_ROOT}/zf_log")
|
|
|
|
##target_compile_definitions(zflog INTERFACE ZFLOG_DEFINITIONS)
|
|
|
|
|
|
|
|
|