From 643749a0a0c33addbc92bf12db41d09d4a4775e0 Mon Sep 17 00:00:00 2001 From: Kalin Kiesling Date: Mon, 21 Mar 2022 15:56:27 -0500 Subject: [PATCH] specify debug with cmake_build_type --- tools/ci/gha-install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/gha-install.py b/tools/ci/gha-install.py index 9c163c1dcb..f22a74410a 100644 --- a/tools/ci/gha-install.py +++ b/tools/ci/gha-install.py @@ -26,7 +26,7 @@ def install(omp=False, mpi=False, phdf5=False, dagmc=False, libmesh=False): os.chdir('build') # Build in debug mode by default - cmake_cmd = ['cmake', '-Ddebug=on'] + cmake_cmd = ['cmake', '-DCMAKE_BUILD_TYPE=Debug'] # Turn off OpenMP if specified if not omp: