diff options
| author | Masoud Naservand <[email protected]> | 2023-01-20 18:37:43 +0330 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-20 16:07:43 +0100 |
| commit | e64606a82f7cc66c57df31815371f0328c723bf4 (patch) | |
| tree | 75a0515f530bc35e7f8cd0e214690401cd9f2f0e /examples/raylib_makefile_example.bat | |
| parent | edaca16d7c007846422cd6e098b117f6f8bab99d (diff) | |
| download | raylib-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_makefile_example.bat')
| -rw-r--r-- | examples/raylib_makefile_example.bat | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/raylib_makefile_example.bat b/examples/raylib_makefile_example.bat index 83fa06e1..cc2fdc22 100644 --- a/examples/raylib_makefile_example.bat +++ b/examples/raylib_makefile_example.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% set FILENAME=%1 set FILENAME_FULL_PATH=%~f1 @@ -24,4 +24,4 @@ mingw32-make %FILENAME% -B PLATFORM=PLATFORM_DESKTOP :: . :: > Executing program :: ------------------------- -cmd /c if exist %FILENAME_FULL_PATH%.exe %FILENAME_FULL_PATH%.exe
\ No newline at end of file +cmd /c if exist %FILENAME_FULL_PATH%.exe %FILENAME_FULL_PATH%.exe |
