Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2ae8711

Browse files
committedJan 14, 2025·
add module install
1 parent 62962dd commit 2ae8711

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎.github/workflows/docs.yml

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ jobs:
1717
with:
1818
python-version: "3.11"
1919

20-
- name: install dependencies
21-
run: pip install numpy
22-
2320
- name: build tetgenpy
2421
run: pip install -e .
2522

‎cpp/tetgenpy/CMakeLists.txt

+5
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,8 @@ install(
2525
DESTINATION ${incl_dest}
2626
FILES_MATCHING
2727
PATTERN "*.hpp")
28+
29+
install(
30+
TARGETS tetgenpy_core
31+
DESTINATION tetgenpy
32+
COMPONENT PythonModule)

0 commit comments

Comments
 (0)
Please sign in to comment.