diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2017-08-19 19:42:48 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-08-19 19:42:48 +0200 |
commit | c1586e0d995de5dd278b0acfe410acf66f6c2c6d (patch) | |
tree | 5c66718c37379eda84669c1990c8d2f8fc0835d3 /src/cmake/showoptions.cmake | |
parent | f888e8c86b09d55587294921fbfeb58afb3d2282 (diff) |
changed DISABLED_ cmake variable to ENABLED_ and implemented for all disabled logs
Diffstat (limited to 'src/cmake/showoptions.cmake')
-rw-r--r-- | src/cmake/showoptions.cmake | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/cmake/showoptions.cmake b/src/cmake/showoptions.cmake index 827b6c15ec..1ec0e87549 100644 --- a/src/cmake/showoptions.cmake +++ b/src/cmake/showoptions.cmake @@ -107,25 +107,25 @@ endif() # Performance optimization options: -if( DISABLE_EXTRAS ) - message("* Disable extra features : Yes") - add_definitions(-DDISABLE_EXTRAS) +if( ENABLE_EXTRAS ) + message("* Enable extra features : Yes (default)") + add_definitions(-DENABLE_EXTRAS) else() - message("* Disable extra features : No (default)") + message("* Enable extra features : No") endif() -if( DISABLE_VMAP_CHECKS ) - message("* Disable vmap DisableMgr checks : Yes") - add_definitions(-DDISABLE_VMAP_CHECKS) +if( ENABLE_VMAP_CHECKS ) + message("* Enable vmap DisableMgr checks : Yes (default)") + add_definitions(-DENABLE_VMAP_CHECKS) else() - message("* Disable vmap DisableMgr checks : No (default)") + message("* Enable vmap DisableMgr checks : No") endif() -if( DISABLE_EXTRA_LOGS ) - message("* Disable extra logging functions : Yes (default)") - add_definitions(-DDISABLE_EXTRA_LOGS) +if( ENABLE_EXTRA_LOGS ) + message("* Enable extra logging functions : Yes") + add_definitions(-DENABLE_EXTRA_LOGS) else() - message("* Disable extra logging functions : No") + message("* Enable extra logging functions : No (default)") endif() message("") |