Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true -diff
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.py-build-cmake_cache
*.conda

# Prerequisites
*.d

Expand Down Expand Up @@ -203,3 +206,6 @@ cython_debug/
src/pyGinkgo/pyGinkgoBindings/

.venv_p
# pixi environments
.pixi/*
!.pixi/config.toml
14 changes: 7 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,12 @@ install(DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}
DESTINATION ${Python_SITELIB})
install(
IMPORTED_RUNTIME_ARTIFACTS
ginkgo
ginkgo_device
ginkgo_hip
ginkgo_cuda
ginkgo_omp
ginkgo_dpcpp
ginkgo_reference
Ginkgo::ginkgo
Ginkgo::ginkgo_device
Ginkgo::ginkgo_hip
Ginkgo::ginkgo_cuda
Ginkgo::ginkgo_omp
Ginkgo::ginkgo_dpcpp
Ginkgo::ginkgo_reference
DESTINATION
${Python_SITELIB}/${PROJECT_NAME})
Loading