2018-07-26 07:44:19 +03:00
|
|
|
add_executable(vpnclient vpncsvc.c)
|
|
|
|
|
|
|
|
set_target_properties(vpnclient
|
|
|
|
PROPERTIES
|
2018-10-18 03:02:17 +03:00
|
|
|
ARCHIVE_OUTPUT_DIRECTORY "${BUILD_DIRECTORY}"
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${BUILD_DIRECTORY}"
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${BUILD_DIRECTORY}"
|
2018-07-26 07:44:19 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(vpnclient cedar mayaqua)
|
2018-10-18 03:02:17 +03:00
|
|
|
|
|
|
|
# Copy binary and "hamcore.se2" to /usr/lib(exec)/softether/, install launch script and systemd service
|
|
|
|
install(TARGETS vpnclient
|
|
|
|
COMPONENT "vpnclient"
|
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBEXECDIR}/softether/vpnclient"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
|
|
|
)
|
|
|
|
|
|
|
|
install(FILES "${BUILD_DIRECTORY}/hamcore.se2"
|
|
|
|
COMPONENT "vpnclient"
|
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBEXECDIR}/softether/vpnclient"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
|
|
|
|
)
|
|
|
|
|
|
|
|
install_wrapper_script("vpnclient" "${CMAKE_INSTALL_FULL_LIBEXECDIR}/softether/vpnclient/vpnclient")
|
|
|
|
install_systemd_service("vpnclient" "${CMAKE_SOURCE_DIR}/systemd/softether-vpnclient.service" "${CMAKE_INSTALL_FULL_LIBEXECDIR}/softether/vpnclient/vpnclient")
|