11 lines
293 B
CMake
11 lines
293 B
CMake
include_directories(../include)
|
|
|
|
file(GLOB sender_src_list ./*.cpp ./*.h ../include/*.h)
|
|
MESSAGE(STATUS ${sender_src_list})
|
|
|
|
add_executable(SecSetGen ${sender_src_list})
|
|
|
|
target_link_libraries(SecSetGen PUBLIC ${LINK_LIB_LIST})
|
|
# target_link_libraries(PcapSender PUBLIC PcapPlusPlus::Pcap++)
|
|
|