Changed: Only compile installer if WITH_RYZOM_INSTALLER set
--HG-- branch : feature-ryzom-installer
This commit is contained in:
parent
9a55bb5783
commit
cf7ecf9857
2 changed files with 6 additions and 2 deletions
|
@ -321,7 +321,7 @@ MACRO(NL_SETUP_RYZOM_DEFAULT_OPTIONS)
|
||||||
OPTION(WITH_RYZOM_CLIENT "Build Ryzom Core Client" ON )
|
OPTION(WITH_RYZOM_CLIENT "Build Ryzom Core Client" ON )
|
||||||
OPTION(WITH_RYZOM_TOOLS "Build Ryzom Core Tools" ON )
|
OPTION(WITH_RYZOM_TOOLS "Build Ryzom Core Tools" ON )
|
||||||
OPTION(WITH_RYZOM_SERVER "Build Ryzom Core Services" ON )
|
OPTION(WITH_RYZOM_SERVER "Build Ryzom Core Services" ON )
|
||||||
OPTION(WITH_RYZOM_SOUND "Enable Ryzom Core Sound" ON )
|
OPTION(WITH_RYZOM_INSTALLER "Build Ryzom Installer" OFF)
|
||||||
|
|
||||||
###
|
###
|
||||||
# Optional support
|
# Optional support
|
||||||
|
|
|
@ -3,8 +3,12 @@ IF(WITH_RYZOM_CLIENT)
|
||||||
|
|
||||||
IF(WITH_QT OR WITH_QT5)
|
IF(WITH_QT OR WITH_QT5)
|
||||||
ADD_SUBDIRECTORY(client_config_qt)
|
ADD_SUBDIRECTORY(client_config_qt)
|
||||||
ADD_SUBDIRECTORY(ryzom_installer)
|
|
||||||
|
IF(WITH_RYZOM_INSTALLER)
|
||||||
|
ADD_SUBDIRECTORY(ryzom_installer)
|
||||||
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
IF(WITH_RYZOM_TOOLS)
|
IF(WITH_RYZOM_TOOLS)
|
||||||
|
|
Loading…
Reference in a new issue