mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
made the build script compile in newer versions of visual studio before older ones.
This commit is contained in:
parent
91150823eb
commit
758068da7e
@ -16,6 +16,21 @@ cd ..
|
||||
|
||||
|
||||
|
||||
echo testing vc2015 >> test_log.txt
|
||||
rm -rf build_vc2015_64
|
||||
mkdir build_vc2015_64
|
||||
cd build_vc2015_64
|
||||
cmake -G "Visual Studio 14 2015 Win64" ..
|
||||
cmake --build . --config Release || exit /B
|
||||
ping 127.0.0.1 -n 5 -w 1000 > null
|
||||
cmake --build . --config Debug || exit /B
|
||||
ping 127.0.0.1 -n 5 -w 1000 > null
|
||||
cd Release
|
||||
dtest --runall -d || exit /B
|
||||
cd ..
|
||||
cd ..
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -50,21 +65,6 @@ cd ..
|
||||
cd ..
|
||||
|
||||
|
||||
echo testing vc2015 >> test_log.txt
|
||||
rm -rf build_vc2015_64
|
||||
mkdir build_vc2015_64
|
||||
cd build_vc2015_64
|
||||
cmake -G "Visual Studio 14 2015 Win64" ..
|
||||
cmake --build . --config Release || exit /B
|
||||
ping 127.0.0.1 -n 5 -w 1000 > null
|
||||
cmake --build . --config Debug || exit /B
|
||||
ping 127.0.0.1 -n 5 -w 1000 > null
|
||||
cd Release
|
||||
dtest --runall -d || exit /B
|
||||
cd ..
|
||||
cd ..
|
||||
|
||||
|
||||
|
||||
del null
|
||||
type test_log.txt
|
||||
|
Loading…
Reference in New Issue
Block a user