1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-02-18 02:34:57 +00:00

Cirrus CI: Add macOS build task

This commit is contained in:
Nicolas Braud-Santoni 2020-07-13 09:49:52 +02:00
parent cd19c4f7a4
commit bd4d67e72e

View file

@ -15,3 +15,24 @@ Linux_task:
env:
CC: clang
CXX: clang++
macOS_task:
osx_instance:
image: catalina-xcode
install_script:
- brew update
- brew upgrade
- brew install cmake llvm make openal-soft sdl2
- brew info cmake llvm make openal-soft sdl2
script:
- mkdir build
- cd build
- cmake .. -DAQUARIA_USE_SDL2=ON
- make -j2
env:
CC: clang
CXX: clang++