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