mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 00:07:31 +02:00
dd server-console to client build
This commit is contained in:
parent
d05de53293
commit
f8409b3977
2 changed files with 2 additions and 2 deletions
|
@ -68,6 +68,7 @@ if (USE_GLES AND (NOT ANDROID))
|
||||||
set(DISABLE_QML_OPTION ON)
|
set(DISABLE_QML_OPTION ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
option(BUILD_CLIENT "Build client components" ${BUILD_CLIENT_OPTION})
|
option(BUILD_CLIENT "Build client components" ${BUILD_CLIENT_OPTION})
|
||||||
option(BUILD_SERVER "Build server components" ${BUILD_SERVER_OPTION})
|
option(BUILD_SERVER "Build server components" ${BUILD_SERVER_OPTION})
|
||||||
option(BUILD_TESTS "Build tests" ${BUILD_TESTS_OPTION})
|
option(BUILD_TESTS "Build tests" ${BUILD_TESTS_OPTION})
|
||||||
|
@ -162,7 +163,6 @@ if (BUILD_SERVER)
|
||||||
set_target_properties(domain-server PROPERTIES FOLDER "Apps")
|
set_target_properties(domain-server PROPERTIES FOLDER "Apps")
|
||||||
add_subdirectory(ice-server)
|
add_subdirectory(ice-server)
|
||||||
set_target_properties(ice-server PROPERTIES FOLDER "Apps")
|
set_target_properties(ice-server PROPERTIES FOLDER "Apps")
|
||||||
add_subdirectory(server-console)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (BUILD_CLIENT)
|
if (BUILD_CLIENT)
|
||||||
|
@ -174,6 +174,7 @@ endif()
|
||||||
|
|
||||||
if (BUILD_CLIENT OR BUILD_SERVER)
|
if (BUILD_CLIENT OR BUILD_SERVER)
|
||||||
add_subdirectory(plugins)
|
add_subdirectory(plugins)
|
||||||
|
add_subdirectory(server-console)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# BUILD_TOOLS option will be handled inside the tools's CMakeLists.txt because 'scribe' tool is required for build anyway
|
# BUILD_TOOLS option will be handled inside the tools's CMakeLists.txt because 'scribe' tool is required for build anyway
|
||||||
|
|
|
@ -49,7 +49,6 @@ elseif (WIN32)
|
||||||
DIRECTORY "${CONSOLE_DESTINATION}/"
|
DIRECTORY "${CONSOLE_DESTINATION}/"
|
||||||
DESTINATION ${CONSOLE_INSTALL_DIR}
|
DESTINATION ${CONSOLE_INSTALL_DIR}
|
||||||
COMPONENT ${SERVER_COMPONENT}
|
COMPONENT ${SERVER_COMPONENT}
|
||||||
COMPONENT ${CLIENT_COMPONENT}
|
|
||||||
)
|
)
|
||||||
install(
|
install(
|
||||||
DIRECTORY "${CONSOLE_DESTINATION}/"
|
DIRECTORY "${CONSOLE_DESTINATION}/"
|
||||||
|
|
Loading…
Reference in a new issue