blob: f0405f1e57a83a1adf489f586020657f9afe4d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
if(MSVC)
file(GLOB PROJECT_SOURCE_LIST_WIN32_C ${pcap_SOURCE_DIR}/missing/getopt.c)
include_directories(${pcap_SOURCE_DIR}/missing)
endif(MSVC)
add_custom_target(testprogs)
macro(add_test_executable _executable)
add_executable(${_executable} EXCLUDE_FROM_ALL
${_executable}.c ${PROJECT_SOURCE_LIST_WIN32_C})
if(NOT C_ADDITIONAL_FLAGS STREQUAL "")
set_target_properties(${_executable} PROPERTIES
COMPILE_FLAGS ${C_ADDITIONAL_FLAGS})
endif()
if(WIN32)
target_link_libraries(${_executable}
${ARGN} ${LIBRARY_NAME} ${PCAP_LINK_LIBRARIES})
else(WIN32)
target_link_libraries(${_executable}
${ARGN} ${LIBRARY_NAME}_static ${PCAP_LINK_LIBRARIES})
endif(WIN32)
if(NOT "${LINKER_FLAGS}" STREQUAL "")
set_target_properties(${_executable} PROPERTIES
LINK_FLAGS "${LINKER_FLAGS}")
endif()
add_dependencies(testprogs ${_executable})
endmacro()
add_test_executable(can_set_rfmon_test)
add_test_executable(capturetest)
add_test_executable(filtertest)
add_test_executable(findalldevstest)
add_test_executable(findalldevstest-perf)
add_test_executable(opentest)
add_test_executable(reactivatetest)
add_test_executable(versiontest)
add_test_executable(writecaptest)
if(NOT WIN32)
add_test_executable(selpolltest)
endif()
add_test_executable(threadsignaltest ${CMAKE_THREAD_LIBS_INIT})
# Same as in configure.ac.
if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR
CMAKE_SYSTEM_NAME STREQUAL "Linux")
add_test_executable(valgrindtest)
endif()
if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR
CMAKE_SYSTEM_NAME STREQUAL "Linux")
if(IS_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git)
add_subdirectory(fuzz)
endif(IS_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git)
endif()
|