]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - appveyor.yml
unvanquished filesystem
[xonotic/netradiant.git] / appveyor.yml
1 platform: x64
2
3 shallow_clone: true
4
5 install:
6   - set "PATH=C:\msys64\usr\bin;%PATH%"
7   - bash -lc "pacman --noconfirm --needed -Sy bash pacman pacman-mirrors msys2-runtime msys2-runtime-devel"
8   - ps: >-
9       bash -lc @"
10         exec 0</dev/null 2>&1
11         pacman --noconfirm -Su
12         pacman --noconfirm --needed -S base-devel mingw-w64-x86_64-{toolchain,clang,cmake,gtk2,gtkglext}
13       "@
14
15 build_script:
16   - set HOME=.
17   - set MSYSTEM=MINGW64
18   - ps: >-
19       bash -lc @"
20         set -e
21         exec 0</dev/null 2>&1
22         # export CC=clang
23         # export CXX=clang++
24         cmake --version
25         cmake -H. -Bbuild -G 'MSYS Makefiles' -DGTK2_GLIBCONFIG_INCLUDE_DIR=/mingw64/lib/glib-2.0/include -DGTK2_GDKCONFIG_INCLUDE_DIR=/mingw64/lib/gtk-2.0/include
26         cmake --build build
27       "@