File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ project(
48
48
set (CPACK_PACKAGE_CHECKSUM "SHA512" )
49
49
set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR} /README.md" )
50
50
set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR} /LICENSE.txt" )
51
+ set (CPACK_SOURCE_GENERATOR "TBZ2" )
51
52
52
53
include (CMakePackageConfigHelpers )
53
54
include (CPack )
@@ -95,6 +96,15 @@ FetchContent_Declare(
95
96
FIND_PACKAGE_ARGS NAMES Kokkos )
96
97
FetchContent_MakeAvailable (kokkos )
97
98
99
+ FetchContent_Declare (
100
+ kokkos_kernels
101
+ GIT_REPOSITORY "https://github.com/kokkos/kokkos-kernels"
102
+ FIND_PACKAGE_ARGS NAMES KokkosKernels )
103
+ FetchContent_MakeAvailable (kokkos_kernels )
104
+ if (WIN32 )
105
+ target_compile_options (kokkoskernels PRIVATE "/bigobj" )
106
+ endif ()
107
+
98
108
add_subdirectory (benchmark )
99
109
add_subdirectory (cmake )
100
110
add_subdirectory (include )
You can’t perform that action at this time.
0 commit comments