Skip to content
Snippets Groups Projects
Unverified Commit da1135cd authored by Rao Garimella's avatar Rao Garimella Committed by GitHub
Browse files

Fix typo in CMake options (#18125)


* New interface reconstruction package

* forgot to put in CMake option for Jali

* cleanup whitespace

* fix lines with more than 79 chars

* more long line cleanup

* fix typo WONTON_ENABLE_Kokkos ---> TANGRAM_ENABLE_Kokkos

Co-authored-by: default avatarRao Garimella <rao@abyzou.lanl.gov>
parent 3da40a5c
No related branches found
No related tags found
No related merge requests found
...@@ -74,9 +74,9 @@ def cmake_args(self): ...@@ -74,9 +74,9 @@ def cmake_args(self):
options.append('-DTANGRAM_ENABLE_THRUST=OFF') options.append('-DTANGRAM_ENABLE_THRUST=OFF')
if '+kokkos' in self.spec: if '+kokkos' in self.spec:
options.append('-DWONTON_ENABLE_Kokkos=ON') options.append('-DTANGRAM_ENABLE_Kokkos=ON')
else: else:
options.append('-DWONTON_ENABLE_Kokkos=OFF') options.append('-DTANGRAM_ENABLE_Kokkos=OFF')
# Unit test variant # Unit test variant
if self.run_tests: if self.run_tests:
......
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