File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,19 @@ include(GNUInstallDirs)
30
30
include (FetchContent )
31
31
32
32
FetchContent_Declare (
33
- pybind11
34
- URL https://github.com/pybind/pybind11/archive/refs/tags/v2.9.2.tar.gz
35
- URL_HASH SHA256=6bd528c4dbe2276635dc787b6b1f2e5316cf6b49ee3e150264e455a0d68d19c1
33
+ pybind11
34
+ URL https://github.com/pybind/pybind11/archive/refs/tags/v2.9.2.tar.gz
35
+ URL_HASH SHA256=6bd528c4dbe2276635dc787b6b1f2e5316cf6b49ee3e150264e455a0d68d19c1
36
36
)
37
37
FetchContent_MakeAvailable (pybind11 )
38
38
39
39
add_subdirectory (dpctl )
40
40
41
+ file (GLOB _cmake_scripts ${CMAKE_SOURCE_DIR} /cmake/*.cmake )
42
+ install (FILES ${_cmake_scripts}
43
+ DESTINATION dpctl/resources/cmake
44
+ )
45
+
41
46
if (DPCTL_GENERATE_DOCS )
42
47
add_subdirectory (docs )
43
48
endif ()
Original file line number Diff line number Diff line change 1
1
recursive-include dpctl/include *.h
2
2
include dpctl/include/dpctl4pybind11.hpp
3
3
recursive-include dpctl *.pxd
4
+ recursive-include dpctl *.cmake
4
5
include dpctl/_sycl_context.h
5
6
include dpctl/_sycl_context_api.h
6
7
include dpctl/_sycl_device.h
You can’t perform that action at this time.
0 commit comments