From d84525fc92f274e86f18b431a14b3ac456564a0c Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Mon, 4 Mar 2024 17:28:09 -0500 Subject: [PATCH] [cmake] Do not define DEBUG macros for RelWithDebInfo builds --- c++/h5/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++/h5/CMakeLists.txt b/c++/h5/CMakeLists.txt index 03ce50fe..12b5fe1a 100644 --- a/c++/h5/CMakeLists.txt +++ b/c++/h5/CMakeLists.txt @@ -15,7 +15,7 @@ target_include_directories(${PROJECT_NAME}_c PUBLIC $) target_compile_definitions(${PROJECT_NAME}_c PUBLIC H5_GIT_HASH=${PROJECT_GIT_HASH} - $<$:H5_DEBUG> + $<$:H5_DEBUG> ) # Install library and headers