CMakeLists.txt 360 B

12345678910111213141516
  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. )
  11. target_link_libraries(badvpn-client system flow tuntap server_conection security ${NSPR_LIBRARIES} ${NSS_LIBRARIES})
  12. install(
  13. TARGETS badvpn-client
  14. RUNTIME DESTINATION bin
  15. )