2020-10-18 16:59:15 +00:00
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(crow_test)
|
2014-08-06 16:18:33 +00:00
|
|
|
|
|
|
|
set(TEST_SRCS
|
2020-10-18 16:59:15 +00:00
|
|
|
unittest.cpp
|
2014-08-06 16:18:33 +00:00
|
|
|
)
|
|
|
|
|
2014-08-06 19:46:28 +00:00
|
|
|
add_executable(unittest ${TEST_SRCS})
|
2014-11-22 02:13:46 +00:00
|
|
|
target_link_libraries(unittest ${Boost_LIBRARIES})
|
|
|
|
target_link_libraries(unittest ${CMAKE_THREAD_LIBS_INIT})
|
2020-10-19 08:02:57 +00:00
|
|
|
set_target_properties(unittest PROPERTIES COMPILE_FLAGS "-Wall -Werror -std=c++14")
|
2014-08-06 19:46:28 +00:00
|
|
|
|
2020-10-18 16:59:15 +00:00
|
|
|
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
2020-10-19 08:02:57 +00:00
|
|
|
set_target_properties(unittest PROPERTIES COMPILE_FLAGS "--coverage -fprofile-arcs -ftest-coverage")
|
2020-10-18 16:59:15 +00:00
|
|
|
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)
|
2020-10-13 08:04:46 +00:00
|
|
|
add_subdirectory(img)
|