CMakeLists.txt 300 B

123456789101112
  1. add_executable(badvpn-server server.c)
  2. target_link_libraries(badvpn-server system flow flowextra nspr_support predicate security ${NSPR_LIBRARIES} ${NSS_LIBRARIES})
  3. install(
  4. TARGETS badvpn-server
  5. RUNTIME DESTINATION bin
  6. )
  7. install(
  8. FILES badvpn-server.8
  9. DESTINATION share/man/man8
  10. )