App: be more thorough when checking surface-associated LayoutState
[staging/windowmanager.git] / CMakeLists.txt
index a7382f0..e0e8f92 100644 (file)
@@ -50,6 +50,14 @@ else()
    remove_definitions(-DDEBUG_OUTPUT)
 endif()
 
+# Should modernize the following somehow...
+set(ENABLE_SCOPE_TRACING OFF CACHE BOOL "Enable scope enter/leave messages for certain parts of the code.")
+if(ENABLE_SCOPE_TRACING)
+   add_definitions(-DSCOPE_TRACING)
+else()
+   remove_definitions(-DSCOPE_TRACING)
+endif()
+
 set(SANITIZER_MODE "none" CACHE STRING "Build using a specific sanitizer (e.g. 'address', 'thread', 'leak', 'undefined'), depends on compiler; default none")
 
 set(LINK_LIBCXX OFF CACHE BOOL "Link against LLVMs libc++")