Skip to content
Snippets Groups Projects
Commit 4cbeec07 authored by Satish Balay's avatar Satish Balay Committed by Todd Gamblin
Browse files

omega-h: fix CMAKE_BUILD_TYPE: breaks with spack deafult 'RelWithDebInfo' (#10297)

parent f4bda74b
No related branches found
No related tags found
No related merge requests found
......@@ -78,6 +78,8 @@ def cmake_args(self):
args.append('-DOmega_h_THROW:BOOL=ON')
else:
args.append('-DOmega_h_THROW:BOOL=OFF')
# omega-h requires empty CMAKE_BUILD_TYPE
args.append('-DCMAKE_BUILD_TYPE:STRING=')
args += list(self._bob_options())
return args
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment