diff options
| -rw-r--r-- | tests/CMakeLists.txt | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index daf4933..6966436 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -13,6 +13,10 @@ if(NOT CMAKE_BUILD_TYPE)    set(CMAKE_BUILD_TYPE Debug)  endif() +if(${CMAKE_BUILD_TYPE} STREQUAL "Debug") +  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDEBUG") +endif() +  #  # Windows  # | 
