apex: Set APEX_WITH_KOKKOS CMake option in apex package (#43243)

* Make sure APEX_WITH_KOKKOS CMake option is set in apex

* Add conflict for apex with ~kokkos
This commit is contained in:
Mikael Simberg 2024-03-22 08:50:29 +01:00 committed by GitHub
parent 69c684fef9
commit 4746e8a048
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -125,6 +125,11 @@ class Apex(CMakePackage):
# https://github.com/UO-OACISS/apex/pull/177#issuecomment-1726322959
conflicts("+openmp", when="%gcc")
# Up to 2.6.3 Kokkos support is always enabled. In 2.6.4 and 2.6.5 there is
# a CMake option to disable Kokkos support but it doesn't work:
# https://github.com/UO-OACISS/apex/issues/180.
conflicts("~kokkos", when="@:2.6.5")
# Patches
# This patch ensures that the missing dependency_tree.hpp header is
@ -154,6 +159,7 @@ def cmake_args(self):
args.append(self.define_from_variant(prefix + "_LM_SENSORS", "lmsensors"))
args.append(self.define_from_variant(prefix + "_TCMALLOC", "gperftools"))
args.append(self.define_from_variant(prefix + "_JEMALLOC", "jemalloc"))
args.append(self.define_from_variant(prefix + "_KOKKOS", "kokkos"))
args.append(self.define_from_variant(test_prefix + "BUILD_TESTS", "tests"))
args.append(self.define_from_variant(test_prefix + "BUILD_EXAMPLES", "examples"))