mirror of https://github.com/OpenVPN/openvpn-gui
commit
8eda780b6f
@ -0,0 +1,19 @@
|
||||
|
||||
autoreconf -iv
|
||||
unset CC
|
||||
unset CXX
|
||||
|
||||
if [ "${ARCH}" = "x86" ]; then
|
||||
export ABBR="i686"
|
||||
export CHOST="i686-w64-mingw32"
|
||||
fi
|
||||
|
||||
if [ "${ARCH}" = "x86_64" ]; then
|
||||
export ABBR="x86_64"
|
||||
export CHOST="x86_64-w64-mingw32"
|
||||
fi
|
||||
|
||||
export CC=${ABBR}-w64-mingw32-gcc
|
||||
|
||||
./configure --prefix=/ --libdir=/lib --host=$CHOST --build=i686-pc-cygwin --program-prefix=''
|
||||
make
|
@ -0,0 +1,15 @@
|
||||
version: "cygwin-{build}"
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- ARCH: x86
|
||||
CYGWIN: C:\Cygwin
|
||||
- ARCH: x86_64
|
||||
CYGWIN: C:\Cygwin64
|
||||
|
||||
build_script:
|
||||
- "%CYGWIN%\\setup-%ARCH%.exe -q -P mingw64-i686-openssl,mingw64-x86_64-openssl,mingw64-i686-gcc-core,mingw64-x86_64-gcc-core,cygwin-devel"
|
||||
- "%CYGWIN%\\bin\\bash -lc 'cd /cygdrive/c/projects/%APPVEYOR_PROJECT_NAME% ; ./appveyor.sh'"
|
||||
|
||||
artifacts:
|
||||
- path: openvpn-gui.exe
|
Loading…
Reference in new issue