Skip to content

Commit 5fda718

Browse files
committed
cmake: port appveyor.yml
Change-Id: I6b6cb4e928bf3df3d74d8c02784db5908fef0ce2
1 parent 3e08136 commit 5fda718

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

appveyor.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,20 @@ configuration: Release
66
platform: x64
77
before_build:
88
- cmd: >-
9-
echo ------------------------
9+
cmake --version
1010
11-
echo Building PCM
11+
mkdir build
12+
13+
cd build
14+
15+
cmake ..
1216
13-
echo ------------------------
1417
build:
15-
project: pcm-all.sln
18+
project: %APPVEYOR_BUILD_FOLDER%\build\PCM.sln
1619
parallel: true
1720
verbosity: minimal
1821
after_build:
19-
- cmd: 7z a pcm-all.zip %APPVEYOR_BUILD_FOLDER%\x64\Release\*.exe %APPVEYOR_BUILD_FOLDER%\x64\Release\*.dll %APPVEYOR_BUILD_FOLDER%\x64\Release\*.lib %APPVEYOR_BUILD_FOLDER%\x64\Release\*.exp
22+
- cmd: 7z a pcm-all.zip %APPVEYOR_BUILD_FOLDER%\build\bin\Release\*.exe %APPVEYOR_BUILD_FOLDER%\build\bin\Release\*.dll %APPVEYOR_BUILD_FOLDER%\build\src\Release\*.lib %APPVEYOR_BUILD_FOLDER%\build\src\Release\*.exp
2023
artifacts:
2124
- path: pcm-all.zip
2225
name: pcm-all

0 commit comments

Comments
 (0)