Skip to content

Commit

Permalink
Initial patch to include .dll.lib file in the artifacts on Windows to…
Browse files Browse the repository at this point in the history
… simplify dynamic linking
  • Loading branch information
simon-wh committed Oct 21, 2024
1 parent 0b42670 commit a7cd0f5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/before_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ main() {
# Copy wrapper items
cp target/release-artifacts/${lib_prefix}wooting_analog_wrapper.$shared_lib_ext $stage/wrapper/
cp target/release-artifacts/${lib_prefix}wooting_analog_wrapper.$lib_ext $stage/wrapper/lib/

if [ $RUNNER_OS = Windows ]; then
cp target/release-artifacts/${lib_prefix}wooting_analog_wrapper.$shared_lib_ext.$lib_ext $stage/wrapper/
fi

cp target/release-artifacts/${lib_prefix}wooting_analog_sdk.$shared_lib_ext $stage/wrapper/sdk/
cp target/release-artifacts/${lib_prefix}wooting_analog_test_plugin.$shared_lib_ext $stage/wrapper/sdk/
# Include Wooting Plugin & Virtual Keyboard app
Expand Down

0 comments on commit a7cd0f5

Please sign in to comment.