Commit 2dd2c92e authored by Andy Li's avatar Andy Li Committed by Davis E. King

Appveyor for Windows CI (#574)

* added basic AppVeyor config

* [AppVeyor] /verbosity:minimal
parent 9e781781
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% --target dtest -- /m /verbosity:minimal
# build examples
- mkdir %APPVEYOR_BUILD_FOLDER%\build_examples
- cd %APPVEYOR_BUILD_FOLDER%\build_examples
- cmake -G "Visual Studio 14 2015 Win64" ../examples
- cmake --build . --config %CONFIGURATION% -- /m /verbosity:minimal
test_script:
# run test
- cd %APPVEYOR_BUILD_FOLDER%\build_test\%CONFIGURATION%
- dtest --runall
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment