AppVeyor build: change folder before starting cmake run.
parent
1cb55a3b80
commit
4c5b97c1b2
10
appveyor.yml
10
appveyor.yml
|
@ -1,20 +1,24 @@
|
||||||
# AppVeyor file
|
# AppVeyor file
|
||||||
# http://www.appveyor.com/docs/appveyor-yml
|
# http://www.appveyor.com/docs/appveyor-yml
|
||||||
|
|
||||||
|
# Operating system (build VM template)
|
||||||
|
os: Previous Windows Server 2012 R2 # using previous worker images since default worker has problem installing DART-Prerequisites.msi
|
||||||
|
|
||||||
|
# clone directory
|
||||||
|
clone_folder: c:\projects\assimp
|
||||||
|
|
||||||
# branches to build
|
# branches to build
|
||||||
branches:
|
branches:
|
||||||
# whitelist
|
# whitelist
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
# clone directory
|
|
||||||
clone_folder: c:\projects\assimp
|
|
||||||
|
|
||||||
platform: x64
|
platform: x64
|
||||||
configuration: Release
|
configuration: Release
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
|
- cd assimp
|
||||||
- cmake -G"Visual Studio 11" ..
|
- cmake -G"Visual Studio 11" ..
|
||||||
- msbuild /m /p:Configuration=Release /p:Platform="Win32" Assimp.sln
|
- msbuild /m /p:Configuration=Release /p:Platform="Win32" Assimp.sln
|
||||||
|
|
Loading…
Reference in New Issue