Skip to content

Commit

Permalink
clean.bat needs to be here
Browse files Browse the repository at this point in the history
  • Loading branch information
tilkinsc committed Jan 2, 2018
1 parent 71c0e66 commit a35a395
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions clean.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

@echo off

echo ^>^>^> Cleaning bin
echo ^> bin\Debug
rmdir /S /Q bin\Debug
rmdir /S /Q bin\debug

echo ^> bin\Release
rmdir /S /Q bin\Release
rmdir /S /Q bin\release


echo ^>^>^> Cleaning obj
echo ^> *.o
del /Q *.o
del /Q obj\*.o
del /Q src\*.o
echo ^> *.a
del /Q *.a
del /Q obj\*.a
del /Q src\*.a
echo ^> *.dll
del /Q *.dll
del /Q obj\*.dll
del /Q src\*.dll

0 comments on commit a35a395

Please sign in to comment.