Commit d92728b3 authored by Davis King's avatar Davis King

Made windows testing bat file use rmdir rather than rm since rm isn't always available on windows.

parent f566b05a
...@@ -6,7 +6,7 @@ rem the pings are to wait between builds so visual studio doesn't get in a funk. ...@@ -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 echo testing python >> test_log.txt
rm -rf build_python rmdir /S /Q build_python
mkdir build_python mkdir build_python
cd build_python cd build_python
cmake -G "Visual Studio 14 2015 Win64" ../../../tools/python -DPYTHON3=ON cmake -G "Visual Studio 14 2015 Win64" ../../../tools/python -DPYTHON3=ON
...@@ -17,7 +17,7 @@ cd .. ...@@ -17,7 +17,7 @@ cd ..
echo testing vc2015 >> test_log.txt echo testing vc2015 >> test_log.txt
rm -rf build_vc2015_64 rmdir /S /Q build_vc2015_64
mkdir build_vc2015_64 mkdir build_vc2015_64
cd build_vc2015_64 cd build_vc2015_64
cmake -G "Visual Studio 14 2015 Win64" .. cmake -G "Visual Studio 14 2015 Win64" ..
......
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