aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-06-20 15:08:10 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-06-20 15:08:10 -0400
commit70588996299b3d53ba63821cef23624ce35f1762 (patch)
tree5dbcccffd509fa71a99c351ed4628ed0841e1e46
parent91d7f4f70583e3aab13ae503bdeda97073cedb07 (diff)
downloadstasis-unit-tests.tar.gz
Fix BUILD_TESTING_DEBUGunit-tests
* Adds missing -D argument
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 66fa91b..ca10017 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,7 +25,7 @@ add_subdirectory(src)
option(BUILD_TESTING_DEBUG OFF)
if (BUILD_TESTING_DEBUG)
- add_compile_options(DEBUG)
+ add_compile_options(-DDEBUG)
endif()
option(BUILD_TESTING OFF)
if (BUILD_TESTING)