File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ version: '{build}'
2
2
branches :
3
3
only :
4
4
- master
5
+ - appveyor
5
6
- /^maint.*/
6
7
environment :
7
8
GITTEST_INVASIVE_FS_STRUCTURE : 1
Original file line number Diff line number Diff line change @@ -7,15 +7,17 @@ if [ "$ARCH" = "i686" ]; then
7
7
curl -LsSO http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/$f
8
8
fi
9
9
7z x $f > /dev/null
10
- mv mingw32 /MinGW
10
+ export PATH= ` pwd ` / mingw32/bin: $PATH
11
11
else
12
12
f=x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z
13
13
if ! [ -e $f ]; then
14
14
curl -LsSO http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/$f
15
15
fi
16
16
7z x $f > /dev/null
17
- mv mingw64 /MinGW
17
+ export PATH= ` pwd ` / mingw64/bin: $PATH
18
18
fi
19
19
cd build
20
+ gcc --version
21
+ cmake --version
20
22
cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G" $GENERATOR "
21
23
cmake --build . --config RelWithDebInfo
You can’t perform that action at this time.
0 commit comments