CMakeLists.txt 334 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 ${CMAKE_INSTALL_BINDIR}
  6. )
  7. install(
  8. FILES badvpn-server.8
  9. DESTINATION ${CMAKE_INSTALL_MANDIR}/man8
  10. )