Skip to content
Snippets Groups Projects
Commit 05cdd43d authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix fast timer build option

parent 872c394e
No related branches found
No related tags found
No related merge requests found
...@@ -331,9 +331,11 @@ else() ...@@ -331,9 +331,11 @@ else()
add_definitions(-URELEASE_SHOW_ASSERT) add_definitions(-URELEASE_SHOW_ASSERT)
endif() endif()
option(DISABLE_TIMING "Disable all but core fast timers" OFF) option(ENABLE_TIMING "Enable all fast timers" ON)
if(DISABLE_TIMING) if(ENABLE_TIMING)
add_definitions(-DAL_DISABLE_TIMERS=1) add_definitions(-DAL_ENABLE_ALL_TIMERS=1)
else()
add_definitions(-DAL_ENABLE_ALL_TIMERS=0)
endif() endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment