From 3a33d8815ef432f6743e7ada1849e3b5d588e615 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 5 Jan 2016 12:25:28 -0800 Subject: [PATCH] add the AC and DS as packaged console dependencies --- console/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/console/CMakeLists.txt b/console/CMakeLists.txt index 120f185c90..017870b329 100644 --- a/console/CMakeLists.txt +++ b/console/CMakeLists.txt @@ -10,6 +10,9 @@ add_custom_target(${TARGET_NAME} ALL WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) +# add a dependency from the package target to the server components +add_dependencies(${TARGET_NAME} assignment-client domain-server) + # set the packaged console folder depending on platform, so we can copy it if (APPLE) set(PACKAGED_CONSOLE_FOLDER "Server\\ Console-darwin-x64")