aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2022-08-24 15:32:30 +0000
committerArne Juul <arnej@yahooinc.com>2022-08-25 13:49:56 +0000
commit51f3b07e26b3836aa341cd6740904ae4d8d5f492 (patch)
tree20c631b0e951b8490a9ecf8061b4fa7b55d642c7 /client
parent6e0d300c3cfecb69cfe562e5b7cc19c8622b7be6 (diff)
switch to vespa-deploy in go
Diffstat (limited to 'client')
-rw-r--r--client/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt
index 1ca6d2b4e60..56c6cacc526 100644
--- a/client/CMakeLists.txt
+++ b/client/CMakeLists.txt
@@ -4,11 +4,13 @@ set(GODIR ${CMAKE_CURRENT_SOURCE_DIR}/go)
file(GLOB_RECURSE GOSRCFILES ${GODIR}/*.go)
-add_custom_command(OUTPUT ${GODIR}/bin/vespa-logfmt
+add_custom_command(OUTPUT ${GODIR}/bin/vespa-logfmt ${GODIR}/bin/vespa-deploy
COMMAND make
DEPENDS ${GODIR}/Makefile ${GOSRCFILES}
WORKING_DIRECTORY ${GODIR})
add_custom_target(vespalog_logfmt ALL DEPENDS ${GODIR}/bin/vespa-logfmt)
+add_custom_target(vespalog_deploy ALL DEPENDS ${GODIR}/bin/vespa-deploy)
install(PROGRAMS ${GODIR}/bin/vespa-logfmt DESTINATION bin)
+install(PROGRAMS ${GODIR}/bin/vespa-deploy DESTINATION bin)