From 70588996299b3d53ba63821cef23624ce35f1762 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 20 Jun 2024 15:08:10 -0400 Subject: Fix BUILD_TESTING_DEBUG * Adds missing -D argument --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit