Skip to content

Commit

Permalink
Update version and version requirements in HPXKokkosConfig.cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikael Simberg committed Mar 25, 2022
1 parent 88695fa commit 2a2cde5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set(HPX_KOKKOS_VERSION_STRING "${HPX_KOKKOS_VERSION_MAJOR}.${HPX_KOKKOS_VERSION_

# Dependencies
find_package(HPX 1.7.0...<1.8.0 REQUIRED)
find_package(Kokkos 3.6.00 REQUIRED)
find_package(Kokkos 3.5.99 REQUIRED)

# Check that Kokkos and HPX options are consistent.
kokkos_check(DEVICES HPX OPTIONS HPX_ASYNC_DISPATCH)
Expand Down
8 changes: 4 additions & 4 deletions cmake/HPXKokkosConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ get_filename_component(HPXKokkos_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
include(CMakeFindDependencyMacro)

set(HPX_KOKKOS_VERSION_MAJOR 0)
set(HPX_KOKKOS_VERSION_MINOR 0)
set(HPX_KOKKOS_VERSION_PATCH 1)
set(HPX_KOKKOS_VERSION_MINOR 2)
set(HPX_KOKKOS_VERSION_PATCH 0)
set(HPX_KOKKOS_VERSION_STRING "${HPX_KOKKOS_VERSION_MAJOR}.${HPX_KOKKOS_VERSION_MINOR}.${HPX_KOKKOS_VERSION_PATCH}.")

find_dependency(HPX 1.7.0 REQUIRED)
find_dependency(Kokkos 3.4.99 REQUIRED)
find_dependency(HPX REQUIRED)
find_dependency(Kokkos REQUIRED)

include("${HPXKokkos_CMAKE_DIR}/HPXKokkosTargets.cmake")

0 comments on commit 2a2cde5

Please sign in to comment.