CMakeLists.txt 231 B

12345678910
  1. add_executable(badvpn-tun2socks
  2. tun2socks.c
  3. SocksUdpGwClient.c
  4. )
  5. target_link_libraries(badvpn-tun2socks system flow tuntap lwip socksclient udpgw_client)
  6. install(
  7. TARGETS badvpn-tun2socks
  8. RUNTIME DESTINATION bin
  9. )