over-the-wire
Version:
Network inspection library for Node
19 lines (14 loc) • 578 B
Plain Text
add_executable(PcapSearch main.cpp)
target_link_libraries(PcapSearch PUBLIC PcapPlusPlus::Pcap++)
if(MSVC)
# This executable requires getopt.h and dirent.h not available on VStudio
add_subdirectory(dirent-for-Visual-Studio)
target_link_libraries(PcapSearch PRIVATE dirent-for-Visual-Studio Getopt-for-Visual-Studio)
endif()
set_target_properties(PcapSearch PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PCAPPP_BINARY_EXAMPLES_DIR}")
if(PCAPPP_INSTALL)
install(
TARGETS PcapSearch
EXPORT PcapPlusPlusTargets
RUNTIME DESTINATION ${PCAPPP_INSTALL_BINDIR})
endif()