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: Rao Garimella <rao@abyzou.lanl.gov>
This commit is contained in:
Rao Garimella 2020-08-17 19:41:04 -06:00 committed by GitHub
parent 3da40a5c61
commit da1135cd19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: