set script to use last lunasvg with cmake support #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build lxrad | |
on: [push] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: sudo apt-get install libwxgtk3.0-gtk3-dev libopenal-dev doxygen | |
- name: Build | |
run: | | |
./make_deps.sh | |
./configure | |
make | |
build-macos: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: brew install wxwidgets openal-soft doxygen | |
- name: Build | |
run: | | |
./make_deps.sh | |
./configure LDFLAGS=-L/usr/local/opt/openal-soft/lib CFLAGS=-I/usr/local/opt/openal-soft/include | |
make |