Remove useless definiition
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>
Wed, 22 Aug 2018 04:44:31 +0000 (13:44 +0900)
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>
Wed, 22 Aug 2018 05:04:27 +0000 (14:04 +0900)
Change-Id: I52eb2ec72e05191c88343eb16e6d12a00ad5667f
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
CMakeLists.txt

index e1cb0db..7e1cee1 100644 (file)
@@ -59,22 +59,6 @@ macro(wlproto var_basename proto_xml_basename)
    include_directories(${CMAKE_CURRENT_BINARY_DIR})
 endmacro()
 
-# Should modernize the following somehow...
-set(ENABLE_DEBUG_OUTPUT OFF CACHE BOOL "Enable debug logging")
-if(ENABLE_DEBUG_OUTPUT)
-   add_definitions(-DDEBUG_OUTPUT)
-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++")