236a9bdce8cb3293b32b48c07b75b950aff7a1e7
[pingcheck] / test / CMakeLists.test_loglevel.txt
1 # compiler: creates the binaries
2 add_executable(test_loglevel
3     test_loglevel.cpp
4     ${CMAKE_SOURCE_DIR}/src/boost_assert_handler.cpp
5     ${CMAKE_SOURCE_DIR}/src/host/loglevel.cpp
6 )
7
8 # linker: link the program against the libraries
9 target_link_libraries(
10     test_loglevel
11     ${I2NCOMMON_LIBRARIES}
12     ${Boost_LIBRARIES}
13 )
14
15 # cmake: invocation via "make test"
16 add_test(test_loglevel test_loglevel)