added option min-time-between-resolves-option and tests for it
[pingcheck] / test / CMakeLists.test_configurationcommandline.txt
CommitLineData
5dfcc527
GMF
1# compiler: creates the binaries
2add_executable(test_configurationcommandline
3 test_configurationcommandline.cpp
780b0bca 4 ${CMAKE_SOURCE_DIR}/src/boost_assert_handler.cpp
5dfcc527
GMF
5 ${CMAKE_SOURCE_DIR}/src/config/configurationcommandline.cpp
6 ${CMAKE_SOURCE_DIR}/src/config/configurationinterface.cpp
7 ${CMAKE_SOURCE_DIR}/src/config/configurationoptions.cpp
8 ${CMAKE_SOURCE_DIR}/src/config/configuration.cpp
9 ${CMAKE_SOURCE_DIR}/src/config/host.cpp
10 ${CMAKE_SOURCE_DIR}/src/config/option/daemonoption.cpp
11 ${CMAKE_SOURCE_DIR}/src/config/option/configfileoption.cpp
12 ${CMAKE_SOURCE_DIR}/src/config/option/configurationoption.cpp
13 ${CMAKE_SOURCE_DIR}/src/config/option/hostconfigurationoption.cpp
14 ${CMAKE_SOURCE_DIR}/src/config/option/hostpingintervaloption.cpp
15 ${CMAKE_SOURCE_DIR}/src/config/option/hostpingprotocoloption.cpp
16 ${CMAKE_SOURCE_DIR}/src/config/option/hostportoption.cpp
17 ${CMAKE_SOURCE_DIR}/src/config/option/hostnameoption.cpp
504adbea 18 ${CMAKE_SOURCE_DIR}/src/config/option/hostsourcenetworkinterfaceoption.cpp
5596767b 19 ${CMAKE_SOURCE_DIR}/src/config/option/hostsdownlimitoption.cpp
5dfcc527
GMF
20 ${CMAKE_SOURCE_DIR}/src/config/option/linkdownintervaloption.cpp
21 ${CMAKE_SOURCE_DIR}/src/config/option/linkupintervaloption.cpp
2c40f493 22 ${CMAKE_SOURCE_DIR}/src/config/option/logleveloption.cpp
e3c7d9ac 23 ${CMAKE_SOURCE_DIR}/src/config/option/logoutputoption.cpp
fda777ea 24 ${CMAKE_SOURCE_DIR}/src/config/option/logfileoption.cpp
5dfcc527
GMF
25 ${CMAKE_SOURCE_DIR}/src/config/option/nameserveroption.cpp
26 ${CMAKE_SOURCE_DIR}/src/config/option/pingfaillimitoption.cpp
27 ${CMAKE_SOURCE_DIR}/src/config/option/sourcenetworkinterfaceoption.cpp
28 ${CMAKE_SOURCE_DIR}/src/config/option/statusnotifiercmdoption.cpp
29 ${CMAKE_SOURCE_DIR}/src/config/option/versionoption.cpp
096b06ef 30 ${CMAKE_SOURCE_DIR}/src/config/option/ratiorandomhostsoption.cpp
079d19ab
CH
31 ${CMAKE_SOURCE_DIR}/src/config/option/pingreplytimeoutoption.cpp
32 ${CMAKE_SOURCE_DIR}/src/config/option/maxaddressresolutionattemptsoption.cpp
33 ${CMAKE_SOURCE_DIR}/src/config/option/resolvedipttlthresholdoption.cpp
f833126b 34 ${CMAKE_SOURCE_DIR}/src/config/option/mintimebetweenresolvesoption.cpp
c5b4902d 35 ${CMAKE_SOURCE_DIR}/src/config/option/dnscachefileoption.cpp
2c40f493 36 ${CMAKE_SOURCE_DIR}/src/host/loglevel.cpp
e3c7d9ac 37 ${CMAKE_SOURCE_DIR}/src/host/logoutput.cpp
5dfcc527
GMF
38 ${CMAKE_SOURCE_DIR}/src/host/pingprotocol.cpp
39)
40
41# linker: link the program against the libraries
42target_link_libraries(
43 test_configurationcommandline
44 ${I2NCOMMON_LIBRARIES}
45 ${Boost_LIBRARIES}
46)
47
48# cmake: invocation via "make test"
49add_test(test_configurationcommandline test_configurationcommandline)