From fd50f69dde598d7c7d6c3428534535422302feb3 Mon Sep 17 00:00:00 2001 From: Prathamesh Deshpande <94743121+prathameshd30@users.noreply.github.com> Date: Wed, 14 Aug 2024 12:15:15 +0530 Subject: [PATCH] Set build type debug, comment add build type release --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 059c983..76d9570 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,8 @@ project(prime-headers) set(CMAKE_C_STANDARD 11) set(CMAKE_C_STANDARD_REQUIRED ON) -set(CMAKE_BUILD_TYPE RelWithDebInfo) +set(CMAKE_BUILD_TYPE Debug) +##set(CMAKE_BUILD_TYPE Release) # deliberately not including these subdirectories by glob regex as precaution