blob: d903d78124e86c326a576c7e8a62cb9a0e873626 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
image:
- Visual Studio 2015
environment:
MSYS_ARCH: x86_64
build:
verbosity: detailed
build_script:
- echo %PATH%
- set PATH=C:\msys64\usr\bin;C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
- set CC=gcc
- set MSYSTEM=MINGW64
- bash -lc "pwd"
- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./bootstrap"
- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./configure --enable-static --disable-shared --disable-drm --disable-randr --disable-vidmode --enable-wingdi --disable-quartz --disable-geoclue --disable-geoclue2 --disable-corelocation --disable-gui --disable-ubuntu --disable-nls --host=x86_64-w64-mingw32"
- bash -lc "cd $APPVEYOR_BUILD_FOLDER && make"
after_build:
- cmd: >-
7z a redshift.zip ./src/redshift.exe COPYING NEWS README.md
appveyor PushArtifact redshift.zip
|