mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-21 17:02:27 +00:00
Fix for non-standard eqemu options in cmake, please don't do this in the future. Thank you.
This commit is contained in:
parent
2f8cbb3a9d
commit
1c07ae9172
@ -117,18 +117,18 @@ SET(EQEMU_DEBUG_LEVEL 5 CACHE STRING "EQEmu debug level:
|
|||||||
OPTION(EQEMU_ENABLE_BOTS "Enable Bots" OFF)
|
OPTION(EQEMU_ENABLE_BOTS "Enable Bots" OFF)
|
||||||
|
|
||||||
#Disable entire _mlog system (excludes trade/command logs)
|
#Disable entire _mlog system (excludes trade/command logs)
|
||||||
OPTION(DISABLE_LOGSYS "Disable Logging INI System" ON)
|
OPTION(EQEMU_DISABLE_LOGSYS "Disable Logging INI System" ON)
|
||||||
|
|
||||||
#Enable GM Command log system
|
#Enable GM Command log system
|
||||||
OPTION(COMMANDS_LOGGING "Enable GM Command logs" ON)
|
OPTION(EQEMU_COMMANDS_LOGGING "Enable GM Command logs" ON)
|
||||||
|
|
||||||
IF(COMMANDS_LOGGING)
|
IF(EQEMU_COMMANDS_LOGGING)
|
||||||
ADD_DEFINITIONS(-DCOMMANDS_LOGGING)
|
ADD_DEFINITIONS(-DCOMMANDS_LOGGING)
|
||||||
ENDIF(COMMANDS_LOGGING)
|
ENDIF(EQEMU_COMMANDS_LOGGING)
|
||||||
|
|
||||||
IF(DISABLE_LOGSYS)
|
IF(EQEMU_DISABLE_LOGSYS)
|
||||||
ADD_DEFINITIONS(-DDISABLE_LOGSYS)
|
ADD_DEFINITIONS(-DDISABLE_LOGSYS)
|
||||||
ENDIF(DISABLE_LOGSYS)
|
ENDIF(EQEMU_DISABLE_LOGSYS)
|
||||||
|
|
||||||
IF(EQEMU_ENABLE_BOTS)
|
IF(EQEMU_ENABLE_BOTS)
|
||||||
ADD_DEFINITIONS(-DBOTS)
|
ADD_DEFINITIONS(-DBOTS)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user