From 0f9d8efe69817b3f8fc478bec2d29dce2712e05e Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 21 Apr 2020 12:50:27 -0400 Subject: [PATCH] state in external Kokkos error message the version 3.1 or later is required --- cmake/Modules/Packages/KOKKOS.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/Packages/KOKKOS.cmake b/cmake/Modules/Packages/KOKKOS.cmake index 3aaba0c4fd..eb549519d1 100644 --- a/cmake/Modules/Packages/KOKKOS.cmake +++ b/cmake/Modules/Packages/KOKKOS.cmake @@ -55,7 +55,7 @@ if(DOWNLOAD_KOKKOS) elseif(EXTERNAL_KOKKOS) find_package(Kokkos 3.1) if(NOT Kokkos_FOUND) - message(FATAL_ERROR "KOKKOS library not found, help CMake to find it by setting KOKKOS_LIBRARY, or set DOWNLOAD_KOKKOS=ON to download it") + message(FATAL_ERROR "KOKKOS library version 3.1 or later not found, help CMake to find it by setting KOKKOS_LIBRARY, or set DOWNLOAD_KOKKOS=ON to download it") endif() target_link_libraries(lammps PRIVATE Kokkos::kokkos) else()