CMake Update Boost URL #1071
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: macOS | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: | | |
brew install sdl2 freetype libvorbis libepoxy jpeg webp meson pkg-config boost | |
- name: Build with Meson | |
run: | | |
meson build | |
ninja -Cbuild | |
- name: Build with CMake | |
run: | | |
cmake -H. -Bbuild-cmake -GNinja | |
ninja -Cbuild-cmake | |
# - name: Android | |
# run: | | |
# make -Candroid |