summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
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)