File: appveyor.yml

package info (click to toggle)
bullet 2.87%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 14,272 kB
  • sloc: cpp: 204,241; ansic: 12,100; lisp: 12,017; python: 593; makefile: 136; sh: 8
file content (19 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
build:
  project: build3/vs2010/0_Bullet3Solution.sln

build_script:
  - mkdir cm
  - cd cm
  - cmake .. -G"Visual Studio 14 2015 Win64"
  - cmake --build . --target ALL_BUILD --config Release -- /maxcpucount:4 /verbosity:quiet

test_script:
  - ctest --parallel 4 --build-config Release --output-on-failure

before_build:
  - echo %CD%
  - ps: cd build3
  - echo %CD%
  - premake4  vs2010
  - ps: cd ..