mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
77b051bef0
simplified script a little.
16 lines
366 B
YAML
16 lines
366 B
YAML
version: "{build}"
|
|
|
|
configuration: Release
|
|
|
|
build_script:
|
|
# build test
|
|
- mkdir %APPVEYOR_BUILD_FOLDER%\build_test
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build_test
|
|
- cmake -G "Visual Studio 14 2015 Win64" ../dlib/test
|
|
- cmake --build . --config %CONFIGURATION%
|
|
|
|
test_script:
|
|
# run test
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build_test\%CONFIGURATION%
|
|
- dtest --runall
|