CMakeLists.txt 376 B

1234567891011121314151617
  1. add_executable(badvpn-client
  2. client.c
  3. StreamPeerIO.c
  4. DatagramPeerIO.c
  5. PasswordListener.c
  6. DataProto.c
  7. PasswordSender.c
  8. FrameDecider.c
  9. DPRelay.c
  10. DPReceive.c
  11. )
  12. target_link_libraries(badvpn-client system flow tuntap server_conection security ${NSPR_LIBRARIES} ${NSS_LIBRARIES})
  13. install(
  14. TARGETS badvpn-client
  15. RUNTIME DESTINATION bin
  16. )