summaryrefslogtreecommitdiffhomepage
path: root/examples/raylib_compile_execute.bat
diff options
context:
space:
mode:
authorMasoud Naservand <[email protected]>2023-01-20 18:37:43 +0330
committerGitHub <[email protected]>2023-01-20 16:07:43 +0100
commite64606a82f7cc66c57df31815371f0328c723bf4 (patch)
tree75a0515f530bc35e7f8cd0e214690401cd9f2f0e /examples/raylib_compile_execute.bat
parentedaca16d7c007846422cd6e098b117f6f8bab99d (diff)
downloadraylib-e64606a82f7cc66c57df31815371f0328c723bf4.tar.gz
raylib-e64606a82f7cc66c57df31815371f0328c723bf4.zip
Correct the set paths in bat files in examples/ (#2870)
Co-authored-by: Masoud Naservand <[email protected]>
Diffstat (limited to 'examples/raylib_compile_execute.bat')
-rw-r--r--examples/raylib_compile_execute.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/raylib_compile_execute.bat b/examples/raylib_compile_execute.bat
index 59a25fc5..0dc43e18 100644
--- a/examples/raylib_compile_execute.bat
+++ b/examples/raylib_compile_execute.bat
@@ -4,10 +4,10 @@
:: .
:: > Setup required Environment
:: -------------------------------------
-set RAYLIB_INCLUDE_DIR=C:\raylib\src
-set RAYLIB_LIB_DIR=C:\raylib\src
-set RAYLIB_RES_FILE=C:\raylib\src\raylib.rc.data
-set COMPILER_DIR=C:\raylib\mingw\bin
+set RAYLIB_INCLUDE_DIR=C:\raylib\raylib\src
+set RAYLIB_LIB_DIR=C:\raylib\raylib\src
+set RAYLIB_RES_FILE=C:\raylib\raylib\src\raylib.rc.data
+set COMPILER_DIR=C:\raylib\w64devkit\bin
set PATH=%PATH%;%COMPILER_DIR%
:: Get full filename path for input file %1
set FILENAME=%~f1