Skip to content

Commit

Permalink
maybe this time
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom committed Apr 1, 2024
1 parent 5d85864 commit 79b0b78
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,21 @@ jobs:
- name: Install dependencies
run: |
brew update
brew install cmake sfml libusb openal-soft libvorbis flac gtk+3
brew install cmake sfml openal-soft libvorbis flac gtk+3 curl
- name: Link OpenAL-Soft
run: |
echo 'export PATH="/usr/local/opt/openal-soft/bin:$PATH"' >> ~/.bash_profile
export LDFLAGS="-L/usr/local/opt/openal-soft/lib"
export CPPFLAGS="-I/usr/local/opt/openal-soft/include"
export PKG_CONFIG_PATH="/usr/local/opt/openal-soft/lib/pkgconfig"
- name: Link cURL
run: |
echo 'export PATH="/usr/local/opt/curl/bin:$PATH"' >> ~/.bash_profile
export LDFLAGS="-L/usr/local/opt/curl/lib"
export CPPFLAGS="-I/usr/local/opt/curl/include"
export PKG_CONFIG_PATH="/usr/local/opt/curl/lib/pkgconfig"
- name: Setup SSH key and Install submodules
env:
Expand Down

0 comments on commit 79b0b78

Please sign in to comment.