CMakeLists.txt 327 B

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