Crow/tests/CMakeLists.txt

20 lines
568 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.15)
project(crow_test)
2014-08-06 16:18:33 +00:00
set(TEST_SRCS
unittest.cpp
2014-08-06 16:18:33 +00:00
)
2014-08-06 19:46:28 +00:00
add_executable(unittest ${TEST_SRCS})
target_link_libraries(unittest ${Boost_LIBRARIES})
target_link_libraries(unittest ${CMAKE_THREAD_LIBS_INIT})
set_target_properties(unittest PROPERTIES COMPILE_FLAGS "-Wall -Werror -std=c++14")
2014-08-06 19:46:28 +00:00
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set_target_properties(unittest PROPERTIES COMPILE_FLAGS "--coverage -fprofile-arcs -ftest-coverage")
target_link_libraries(unittest gcov)
2014-09-06 19:30:53 +00:00
endif()
2014-08-06 19:46:28 +00:00
add_subdirectory(template)
add_subdirectory(img)