File size: 833 Bytes
8b7c501 |
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 |
version: '{build}'
clone_folder: c:\projects\cpuinfo
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CMAKE_GENERATOR: Visual Studio 14 2015
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CMAKE_GENERATOR: Visual Studio 14 2015 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CMAKE_GENERATOR: Visual Studio 15 2017
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CMAKE_GENERATOR: Visual Studio 15 2017 Win64
before_build:
- cmd: |-
mkdir build
cd build
cmake -DCMAKE_CXX_FLAGS=/D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -G "%CMAKE_GENERATOR%" ..
build:
project: c:\projects\cpuinfo\build\cpuinfo.sln
verbosity: minimal
parallel: true
test_script:
- Debug\init-test.exe
- Debug\cpu-info.exe
- Debug\cache-info.exe
- Debug\isa-info.exe
|