Skip to content

Commit

Permalink
Add DLL to Python dir on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lamyj committed Oct 1, 2023
1 parent e616871 commit 4b6a689
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Upload build
uses: actions/upload-artifact@v3
with:
name: build
name: build-${{ matrix.os }}
path: install/

- name: Run tests
Expand Down
4 changes: 4 additions & 0 deletions wrappers/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ install(DIRECTORY DESTINATION "${PYTHON_SITE_PACKAGES}")
install(TARGETS pysycomore DESTINATION "${PYTHON_SITE_PACKAGES}/sycomore")
install(FILES ${python_files} DESTINATION "${PYTHON_SITE_PACKAGES}/sycomore")

if(WIN32)
install(TARGETS libsycomore DESTINATION "${PYTHON_SITE_PACKAGES}/sycomore")
endif()

foreach(include_file ${header_files} ${template_files})
file(
RELATIVE_PATH
Expand Down

0 comments on commit 4b6a689

Please sign in to comment.