summaryrefslogtreecommitdiffhomepage
path: root/projects/scripts/build-windows.bat
diff options
context:
space:
mode:
authorRay <[email protected]>2022-08-06 19:23:36 +0200
committerRay <[email protected]>2022-08-06 19:23:36 +0200
commit86ac792d9a950a6ce8878d53417627c857516ebd (patch)
treedf1fdb87477cef7c9bd172c4a14c548af1cba16a /projects/scripts/build-windows.bat
parentec8fabceeb20939e9330b4fd84e69bba3506a78b (diff)
downloadraylib-86ac792d9a950a6ce8878d53417627c857516ebd.tar.gz
raylib-86ac792d9a950a6ce8878d53417627c857516ebd.zip
Review projects details for raylib 4.2
Diffstat (limited to 'projects/scripts/build-windows.bat')
-rw-r--r--projects/scripts/build-windows.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/scripts/build-windows.bat b/projects/scripts/build-windows.bat
index 1cf180bb..2c085f8d 100644
--- a/projects/scripts/build-windows.bat
+++ b/projects/scripts/build-windows.bat
@@ -165,7 +165,7 @@ REM Build raylib if it hasn't been cached in TEMP_DIR
IF NOT EXIST !TEMP_DIR!\ (
mkdir !TEMP_DIR!
cd !TEMP_DIR!
- REM Raylib's src folder
+ REM raylib source folder
set "RAYLIB_DEFINES=/D_DEFAULT_SOURCE /DPLATFORM_DESKTOP /DGRAPHICS_API_OPENGL_33"
set RAYLIB_C_FILES="!RAYLIB_SRC!\rcore.c" "!RAYLIB_SRC!\rshapes.c" "!RAYLIB_SRC!\rtextures.c" "!RAYLIB_SRC!\rtext.c" "!RAYLIB_SRC!\rmodels.c" "!RAYLIB_SRC!\utils.c" "!RAYLIB_SRC!\raudio.c" "!RAYLIB_SRC!\rglfw.c"
set RAYLIB_INCLUDE_FLAGS=/I"!RAYLIB_SRC!" /I"!RAYLIB_SRC!\external\glfw\include"
@@ -175,7 +175,7 @@ IF NOT EXIST !TEMP_DIR!\ (
) ELSE (
cl.exe /w /c !VERBOSITY_FLAG! !RAYLIB_DEFINES! !RAYLIB_INCLUDE_FLAGS! !COMPILATION_FLAGS! !RAYLIB_C_FILES! || exit /B
)
- IF NOT DEFINED QUIET echo COMPILE-INFO: Raylib compiled into object files in: !TEMP_DIR!\
+ IF NOT DEFINED QUIET echo COMPILE-INFO: raylib compiled into object files in: !TEMP_DIR!\
REM Out of the temp directory
cd !ROOT_DIR!