Set build targets properly for client-only install of console

This commit is contained in:
Roxanne Skelly 2018-10-01 12:45:56 -07:00
parent f8409b3977
commit fbaac4254e

View file

@ -19,7 +19,13 @@ set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Server Console")
set_target_properties(${TARGET_NAME}-npm-install PROPERTIES FOLDER "hidden/Server Console")
# add a dependency from the package target to the server components
add_dependencies(${TARGET_NAME} assignment-client domain-server interface)
if (BUILD_CLIENT)
add_dependencies(${TARGET_NAME} interface)
endif()
if (BUILD_SERVER)
add_dependencies(${TARGET_NAME} assignment-client domain-server interface)
endif()
# set the packaged console folder depending on platform, so we can copy it
if (APPLE)