14 lines
No EOL
464 B
CMake
14 lines
No EOL
464 B
CMake
option(MODULES_MEMORY_DEBUG "Debug memory" OFF)
|
|
option(MODULES_MEMORY_DEBUG_STACK_TRACE "Record stack info on memory debug" OFF)
|
|
|
|
set(WINDOWS_LIBRARIES "../../ModulesWindowsLibraries" CACHE STRING "Svn repository with windows libraries https://svn.riouxsvn.com/moduleswindowsl")
|
|
|
|
if (MODULES_MEMORY_DEBUG)
|
|
add_compile_definitions(MEM_DEBUG)
|
|
endif ()
|
|
|
|
if (MODULES_MEMORY_DEBUG_STACK_TRACE)
|
|
add_compile_definitions(MEM_STACK_TRACE)
|
|
endif ()
|
|
|
|
enable_testing() |