File: appveyor.yml

package info (click to toggle)
assimp 3.3.1~dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,144 kB
  • sloc: cpp: 116,933; ansic: 7,063; java: 2,037; python: 1,968; pascal: 341; xml: 146; sh: 126; objc: 122; makefile: 47
file content (40 lines) | stat: -rw-r--r-- 893 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml

# clone directory
clone_folder: c:\projects\assimp

# branches to build
branches:
  # whitelist
  only:
    - master

platform:
    - x86
    - x64

configuration:
  - 14 2015
  - 12 2013
  #- MinGW
  #- 10 2010 # only works for x86

init:
- if "%platform%" EQU "x64" ( for %%a in (2008 2010 MinGW) do ( if "%Configuration%"=="%%a" (echo "Skipping unsupported configuration" && exit /b 1 ) ) )

install:
# Make compiler command line tools available
- call c:\projects\assimp\scripts\appveyor\compiler_setup.bat

build_script:
 - cd c:\projects\assimp
 - cmake CMakeLists.txt -G "Visual Studio %Configuration%"
 - msbuild /m /p:Configuration=Release /p:Platform="Win32" Assimp.sln

after_build:
  - 7z a assimp.7z c:\projects\assimp\bin\release\* c:\projects\assimp\lib\release\*

artifacts:
  - path: assimp.7z
    name: assimp_lib