diff options
| author | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-27 02:18:56 -0600 |
|---|---|---|
| committer | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-28 11:05:42 -0600 |
| commit | 7a9cb6a00cafa9ca5f12d2f962fde6bb53ab9f5d (patch) | |
| tree | 5027d6a4989c1788537b3e18568e7c8c754bad26 /.github | |
| parent | 23b1cf470388e66e914af03c7091fde92b351f0a (diff) | |
Grab discord-rpc too
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b122d09..60c90234 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,17 +25,23 @@ jobs: cmake -Bbuild -H. -DBUILD_TESTING=OFF cmake --build build/ --target install - - name: Download BASS + - name: Fetch external libs run: | + # discord-rpc + curl -L https://github.com/discordapp/discord-rpc/releases/download/v3.4.0/discord-rpc-win.zip -o discord_rpc_win.zip + unzip discord_rpc_linux.zip + cp discord-rpc/win64-static/lib/discord-rpc.lib ../lib + + # BASS mkdir bass cd bass curl http://www.un4seen.com/files/bass24.zip -o bass.zip unzip bass.zip - cp bass.dll ../lib cp ./c/bass.lib ../lib + + # BASS Opus curl http://www.un4seen.com/files/bassopus24.zip -o bassopus.zip unzip bassopus.zip - cp bassopus.dll ../lib cp ./c/bassopus.lib ../lib - name: Cache Qt |
