CMakeLists.txt 316 B

1234567891011121314
  1. add_executable(badvpn-ncd
  2. ncd.c
  3. NCDIfConfig.c
  4. NCDInterfaceMonitor.c
  5. NCDInterfaceModule.c
  6. interface_modules/interface_physical.c
  7. interface_modules/interface_badvpn.c
  8. )
  9. target_link_libraries(badvpn-ncd system dhcpclient ncdconfig)
  10. install(
  11. TARGETS badvpn-ncd
  12. RUNTIME DESTINATION bin
  13. )