15 lines
422 B
CMake
15 lines
422 B
CMake
# Compute paths
|
|
@PACKAGE_INIT@
|
|
|
|
#Find dependencies
|
|
INCLUDE(CMakeFindDependencyMacro)
|
|
|
|
#This needs to go above the KokkosTargets in case
|
|
#the Kokkos targets depend in some way on the TPL imports
|
|
@KOKKOS_TPL_EXPORTS@
|
|
|
|
GET_FILENAME_COMPONENT(Kokkos_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
INCLUDE("${Kokkos_CMAKE_DIR}/KokkosTargets.cmake")
|
|
INCLUDE("${Kokkos_CMAKE_DIR}/KokkosConfigCommon.cmake")
|
|
UNSET(Kokkos_CMAKE_DIR)
|