CMakeLists.txt 329 B

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