Skip to content

Commit

Permalink
add simple compilation script
Browse files Browse the repository at this point in the history
  • Loading branch information
Plucky Porcupine committed Mar 4, 2020
1 parent f336341 commit 2afc4e6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions 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"
)
2 changes: 2 additions & 0 deletions examples.txt
@@ -0,0 +1,2 @@
examples\core_2d_camera
games\arkanoid

0 comments on commit 2afc4e6

Please sign in to comment.