aboutsummaryrefslogtreecommitdiffstats
path: root/client/CMakeLists.txt
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2023-02-03 15:45:56 +0100
committerMartin Polden <mpolden@mpolden.no>2023-02-06 10:00:32 +0100
commit519daa77057387c60a015340b871a62c65fb04ac (patch)
tree45bbb727745d04598a19d5f87f6b80a9878e4df3 /client/CMakeLists.txt
parent043e07eafa1c70f7bf92ad192b87680d1a1f130d (diff)
Rename script-utils -> vespa-wrapper
Diffstat (limited to 'client/CMakeLists.txt')
-rw-r--r--client/CMakeLists.txt60
1 files changed, 30 insertions, 30 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt
index a029af876f0..b73f4e153ff 100644
--- a/client/CMakeLists.txt
+++ b/client/CMakeLists.txt
@@ -4,37 +4,37 @@ set(GODIR ${CMAKE_CURRENT_SOURCE_DIR}/go)
file(GLOB_RECURSE GOSRCFILES ${GODIR}/*.go)
-add_custom_command(OUTPUT ${GODIR}/bin/vespa ${GODIR}/bin/script-utils
+add_custom_command(OUTPUT ${GODIR}/bin/vespa ${GODIR}/bin/vespa-wrapper
COMMAND make
DEPENDS ${GODIR}/Makefile ${GOSRCFILES}
WORKING_DIRECTORY ${GODIR})
-add_custom_target(client_go_binaries ALL DEPENDS ${GODIR}/bin/vespa ${GODIR}/bin/script-utils)
-
-install(PROGRAMS ${GODIR}/bin/script-utils DESTINATION libexec/vespa)
-
-install_symlink(libexec/vespa/script-utils bin/vespa-logfmt)
-install_symlink(libexec/vespa/script-utils bin/vespa-deploy)
-install_symlink(libexec/vespa/script-utils bin/vespa-security-env)
-install_symlink(libexec/vespa/script-utils bin/vespa-get-cluster-state)
-install_symlink(libexec/vespa/script-utils bin/vespa-get-node-state)
-install_symlink(libexec/vespa/script-utils bin/vespa-set-node-state)
-install_symlink(libexec/vespa/script-utils bin/vespa-start-configserver)
-install_symlink(libexec/vespa/script-utils bin/vespa-start-services bin)
-install_symlink(libexec/vespa/script-utils bin/vespa-stop-services bin)
-
-install_symlink(libexec/vespa/script-utils bin/vespa-get-config)
-install_symlink(libexec/vespa/script-utils bin/vespa-verify-ranksetup)
-install_symlink(libexec/vespa/script-utils bin/vespa-config-status)
-install_symlink(libexec/vespa/script-utils bin/vespa-configproxy-cmd)
-install_symlink(libexec/vespa/script-utils bin/vespa-doclocator)
-install_symlink(libexec/vespa/script-utils bin/vespa-model-inspect)
-install_symlink(libexec/vespa/script-utils bin/vespa-proton-cmd)
-install_symlink(libexec/vespa/script-utils bin/vespa-rpc-invoke)
-install_symlink(libexec/vespa/script-utils bin/vespa-sentinel-cmd)
-install_symlink(libexec/vespa/script-utils bin/vespa-route)
-install_symlink(libexec/vespa/script-utils bin/vespa-transactionlog-inspect)
-
-install_symlink(libexec/vespa/script-utils sbin/vespa-distributord)
-install_symlink(libexec/vespa/script-utils sbin/vespa-proton)
-install_symlink(libexec/vespa/script-utils sbin/vespa-storaged)
+add_custom_target(client_go_binaries ALL DEPENDS ${GODIR}/bin/vespa ${GODIR}/bin/vespa-wrapper)
+
+install(PROGRAMS ${GODIR}/bin/vespa-wrapper DESTINATION libexec/vespa)
+
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-logfmt)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-deploy)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-security-env)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-get-cluster-state)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-get-node-state)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-set-node-state)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-start-configserver)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-start-services bin)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-stop-services bin)
+
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-get-config)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-verify-ranksetup)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-config-status)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-configproxy-cmd)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-doclocator)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-model-inspect)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-proton-cmd)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-rpc-invoke)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-sentinel-cmd)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-route)
+install_symlink(libexec/vespa/vespa-wrapper bin/vespa-transactionlog-inspect)
+
+install_symlink(libexec/vespa/vespa-wrapper sbin/vespa-distributord)
+install_symlink(libexec/vespa/vespa-wrapper sbin/vespa-proton)
+install_symlink(libexec/vespa/vespa-wrapper sbin/vespa-storaged)