Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2019-05-29 01:41:48 +0300
committergabime <gmelman1@gmail.com>2019-05-29 01:41:48 +0300
commit76fc166e115a053cfb95b0378e8c7fdff6656ddf (patch)
treefe54a85f39c6578ad97d7150cf3e414e9693f498 /CMakeLists.txt
parent459cd21070ec8cf23a9cb3835184eee746c17929 (diff)
CMakeLists.txt minor improvments
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d206af37..0ad1b307 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -101,15 +101,18 @@ endif()
# build binries
#---------------------------------------------------------------------------------------
if(SPDLOG_BUILD_EXAMPLES)
+ message(STATUS "Generating examples")
add_subdirectory(example)
endif()
if(SPDLOG_BUILD_TESTS)
+ message(STATUS "Generating tests")
include(CTest)
add_subdirectory(tests)
endif()
if(SPDLOG_BUILD_BENCH)
+ message(STATUS "Generating benchmarks")
add_subdirectory(bench)
endif()
@@ -117,6 +120,7 @@ endif()
# install
#---------------------------------------------------------------------------------------
if (SPDLOG_INSTALL)
+ message(STATUS "Generating install")
set(project_config_in "${CMAKE_CURRENT_LIST_DIR}/cmake/spdlogConfig.cmake.in")
set(project_config_out "${CMAKE_CURRENT_BINARY_DIR}/spdlogConfig.cmake")
set(config_targets_file "spdlogConfigTargets.cmake")