Skip to content

Commit 6f1e7ab

Browse files
committed
updated appveyor
1 parent b5ce553 commit 6f1e7ab

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

appveyor.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
environment:
2+
home: C:\projects
3+
cmake: C:\projects\cmake-3.4.1-win32-x86\bin\cmake.exe
4+
5+
os: Visual Studio 2015
6+
7+
install:
8+
- ps: wget https://cmake.org/files/v3.4/cmake-3.4.1-win32-x86.zip -OutFile cmake.zip
9+
- cmd: 7z x cmake.zip -o"C:\projects" -y > nul # will extract to cmake-3.4.1-win32-x86\
10+
- cmd: '%cmake% --version'
11+
12+
before_build: # We're still in %home%
13+
- cmd: mkdir build
14+
- cmd: cd build
15+
- cmd: '%cmake% -G "Visual Studio 14 Win64" -DCMAKE_INSTALL_PREFIX=..\install ..\MiniCommander\test'
16+
17+
build:
18+
project: C:\projects\build\MINICMD_TEST.sln
19+
20+
after_build: # We're still in %home%\build
21+
- cmd: '%cmake% --build . --target INSTALL --config Release'
22+
23+
configuration:
24+
- Release

0 commit comments

Comments
 (0)