X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=CMakeLists.txt;h=e0e8f922d2187344fbde1a9d89401d62ac24e0e9;hb=6946f6008999f9aaffdbc3043afbfe17fe04fc49;hp=5d383090734aebf51e3040eb0a635937943cd973;hpb=59e0e42d7f612f4e9f526a0632a86dc0300ad76f;p=staging%2Fwindowmanager.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d38309..e0e8f92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,6 +50,16 @@ 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++") + add_subdirectory(src)