Skip to content

Commit

Permalink
omit copying bin folder
Browse files Browse the repository at this point in the history
  • Loading branch information
grlee77 committed Oct 27, 2023
1 parent 80a235e commit 7b1b9b5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,13 @@ fi
# Build the C++ cuslide and cumed plugins
./run build_local cuslide ${CMAKE_BUILD_TYPE}
cp -P -r cpp/plugins/cucim.kit.cuslide/install/lib/* ./install/lib/
cp -P -r cpp/plugins/cucim.kit.cuslide/install/bin/* ./install/bin/
# omit copying potentially non-existent binaries due to patch above.
# they don't go in the wheel anyways
# cp -P -r cpp/plugins/cucim.kit.cuslide/install/bin/* ./install/bin/

./run build_local cumed ${CMAKE_BUILD_TYPE}
cp -P -r cpp/plugins/cucim.kit.cumed/install/lib/* ./install/lib/
cp -P -r cpp/plugins/cucim.kit.cumed/install/bin/* ./install/bin/
# cp -P -r cpp/plugins/cucim.kit.cumed/install/bin/* ./install/bin/

# problems: boost-header-only takes a long time to download

Expand Down

0 comments on commit 7b1b9b5

Please sign in to comment.