summaryrefslogtreecommitdiffhomepage
path: root/examples/raylib_compile_execute.bat
diff options
context:
space:
mode:
authorRay <[email protected]>2019-05-14 00:07:44 +0200
committerRay <[email protected]>2019-05-14 00:07:44 +0200
commit6f7b721d81c46718ae522e4a05e16c93711faefb (patch)
tree8644e950fbcd9908c5ce5d220026910b4e22ba51 /examples/raylib_compile_execute.bat
parent6804c2189e07a661ef975146c288619589c90731 (diff)
parent00431396b0b516b2296c17e5e5b5fd9e72bacfec (diff)
downloadraylib-6f7b721d81c46718ae522e4a05e16c93711faefb.tar.gz
raylib-6f7b721d81c46718ae522e4a05e16c93711faefb.zip
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'examples/raylib_compile_execute.bat')
-rw-r--r--examples/raylib_compile_execute.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/raylib_compile_execute.bat b/examples/raylib_compile_execute.bat
index aaae4056..4b356419 100644
--- a/examples/raylib_compile_execute.bat
+++ b/examples/raylib_compile_execute.bat
@@ -25,7 +25,7 @@ cmd /c if exist %NAMEPART%.exe del /F %NAMEPART%.exe
:: -std=c99 : Use C99 language standard
:: -Wall : Enable all compilation Warnings
:: -mwindows : Compile a Windows executable, no cmd window
-gcc -o %NAMEPART%.exe %FILENAME% %RAYLIB_RES_FILE% -s -O2 -I%RAYLIB_INCLUDE_DIR% -I%RAYLIB_LIB_DIR% -lraylib -lopengl32 -lgdi32 -std=c99 -Wall -mwindows
+gcc -o %NAMEPART%.exe %FILENAME% %RAYLIB_RES_FILE% -s -O2 -I%RAYLIB_INCLUDE_DIR% -I%RAYLIB_LIB_DIR% -lraylib -lopengl32 -lgdi32 -lwinmm -std=c99 -Wall -mwindows
:: .
:: > Executing program
:: -------------------------