From 97bec2838031cf874a5f1fa6175c922dd0384b8b Mon Sep 17 00:00:00 2001 From: Kalin Kiesling Date: Tue, 22 Mar 2022 10:02:04 -0500 Subject: [PATCH] set default build with cache variable Co-authored-by: Paul Romano --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 27a8f06adb..6a0066dc65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ option(libmesh "Enable support for libMesh unstructured mesh tallies" OFF) #=============================================================================== if (NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE Release) + set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build" FORCE) endif() #===============================================================================