appveyor: specify config in "cmake --build" commands

This commit is contained in:
Hugues Delorme 2016-03-09 10:33:01 +01:00
parent fdfb87af4c
commit aa372aa507

View File

@ -36,8 +36,8 @@ build_script:
-DGMIO_BUILD_BENCHMARK_ASSIMP=OFF ^
-DGMIO_BUILD_BENCHMARK_OPENCASCADE=OFF ^
-DGMIO_BUILD_TESTS_FAKE_SUPPORT=ON
- cmake --build .
- cmake --build . --target test_core
- cmake --build . --target test_stl
- cmake --build . --config %CONFIGURATION%
- cmake --build . --target test_core --config %CONFIGURATION%
- cmake --build . --target test_stl --config %CONFIGURATION%
- set PATH=%APPVEYOR_BUILD_FOLDER%\build\src\%CONFIGURATION%;%PATH%
- cd tests && ctest . -V -C %CONFIGURATION%