mirror of https://github.com/davisking/dlib.git
Made windows testing bat file use rmdir rather than rm since rm isn't always available on windows.
This commit is contained in:
parent
f566b05a2e
commit
d92728b334
|
@ -6,7 +6,7 @@ rem the pings are to wait between builds so visual studio doesn't get in a funk.
|
|||
|
||||
|
||||
echo testing python >> test_log.txt
|
||||
rm -rf build_python
|
||||
rmdir /S /Q build_python
|
||||
mkdir build_python
|
||||
cd build_python
|
||||
cmake -G "Visual Studio 14 2015 Win64" ../../../tools/python -DPYTHON3=ON
|
||||
|
@ -17,7 +17,7 @@ cd ..
|
|||
|
||||
|
||||
echo testing vc2015 >> test_log.txt
|
||||
rm -rf build_vc2015_64
|
||||
rmdir /S /Q build_vc2015_64
|
||||
mkdir build_vc2015_64
|
||||
cd build_vc2015_64
|
||||
cmake -G "Visual Studio 14 2015 Win64" ..
|
||||
|
|
Loading…
Reference in New Issue