mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
28 lines
438 B
YAML
28 lines
438 B
YAML
language: c
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libsdl2-mixer-dev
|
|
- libpng-dev
|
|
- libgl1-mesa-dev
|
|
- libgme-dev
|
|
- p7zip
|
|
|
|
before_install:
|
|
- cmake --version
|
|
|
|
before_script:
|
|
- curl http://rosenthalcastle.org/srb2/SRB2-v2114-Installer.exe -o cache/SRB2-v2114-Installer.exe
|
|
- 7z x cache/SRB2-v2114-Installer.exe -o assets
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
|