8 lines
210 B
CMake
8 lines
210 B
CMake
|
add_executable(badvpn-flooder flooder.c)
|
||
|
target_link_libraries(badvpn-flooder system flow server_conection ${NSPR_LIBRARIES} ${NSS_LIBRARIES})
|
||
|
|
||
|
install(
|
||
|
TARGETS badvpn-flooder
|
||
|
RUNTIME DESTINATION bin
|
||
|
)
|