Commit 846fdf9f authored by Kevin M. Godby's avatar Kevin M. Godby

Added ctest so we now have a 'make test' target for running tests.

parent 1b444345
...@@ -23,13 +23,13 @@ target_include_directories( ...@@ -23,13 +23,13 @@ target_include_directories(
set(HEADER_BASE "${CMAKE_CURRENT_SOURCE_DIR}/include") set(HEADER_BASE "${CMAKE_CURRENT_SOURCE_DIR}/include")
include(CTest)
if(SPDLOG_BUILD_EXAMPLES) if(SPDLOG_BUILD_EXAMPLES)
enable_testing() add_subdirectory(example)
add_subdirectory(example)
endif() endif()
if(SPDLOG_BUILD_TESTS) if(SPDLOG_BUILD_TESTS)
add_subdirectory(tests) add_subdirectory(tests)
endif() endif()
### Install ### ### Install ###
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment