diff --git a/compileall.bat b/compileall.bat new file mode 100644 index 0000000..a05af5b --- /dev/null +++ b/compileall.bat @@ -0,0 +1,12 @@ +@echo off + +if NOT exist bin\nul ( + mkdir bin + copy /b raylib.dll bin +) + +for /f "tokens=*" %%a in (examples.txt) do ( + mm %%a + copy "%%a.exe" bin + del "%%a.exe" +) \ No newline at end of file diff --git a/examples.txt b/examples.txt new file mode 100644 index 0000000..e645679 --- /dev/null +++ b/examples.txt @@ -0,0 +1,2 @@ +examples\core_2d_camera +games\arkanoid \ No newline at end of file