summaryrefslogtreecommitdiffhomepage
path: root/projects/scripts
AgeCommit message (Collapse)Author
2022-08-06Review projects details for raylib 4.2Ray
2022-02-10Update file names in build scripts (#2339)gtrxAC
* JSON parser: Use array for function params (#2255) * Parser: follow C convention of type before name * Update file names in build scripts
2021-10-03Update core_basic_window.cRay
2021-10-03Tidying the core_basic_window.c in projects/scripts (#2025)Dennis E. Hamilton
* Match build-windows.bat changes The location for manual setting of the vcvarsall.bat location moved to line 38 in the latest change. * Update flags for clean x64/x86 building std:c11 is required for initialization features used in raylib. UTF-8 for consistency in contemporary systems. /W3 gets rid of puzzling slack byte and linker in-lining warnings. /sdl for some insecure library usages in the user code that beginners should learn about early. * 2021-10-01 core_basic_windows.c adjustment 1. The press F6 message and the placement of the compiled executable statement are incorrect for the scripts case. 2. <raylib.h> because "raylib.h" is meaningful only when compiling inside raylib/src/ folder. 3. main(void) to get rid of a novice-confusing warning.
2021-09-30Cleanup x64/x86 options in scripts/build-windows.bat (#2023)Dennis E. Hamilton
* Match build-windows.bat changes The location for manual setting of the vcvarsall.bat location moved to line 38 in the latest change. * Update flags for clean x64/x86 building std:c11 is required for initialization features used in raylib. UTF-8 for consistency in contemporary systems. /W3 gets rid of puzzling slack byte and linker in-lining warnings. /sdl for some insecure library usages in the user code that beginners should learn about early.
2021-09-22WARNING: MODULES RENAMING!!!Ray
raylib modules have been slightly renamed to add some identity and note that they are independent modules that can be used as standalone separate parts of raylib if required. The renamed modules are: - `core` -> `rcore` - `shapes` -> `rshapes` - `textures` -> `rtextures` - `text` -> `rtext` - `models` -> `rmodels` - `camera` -> `rcamera` - `gestures` -> `rgestures` - `core` -> `rcore` All the build systems has been adapted to this change.
2021-08-16Match build-windows.bat changes (#1923)Dennis E. Hamilton
The location for manual setting of the vcvarsall.bat location moved to line 38 in the latest change.
2021-06-12Changed windows-build to build-windows (#1822)FSasquatch
2020-08-10Making the windows build script a bit faster by verifying if the msvc ↵Henrique de Lima
environment was set up previously and only setting it up if it wasn't (#1346)
2020-03-16Adding the option to change the target platform(x86/x64), Generating the ↵Henrique de Lima
.pdb file on debug builds, and correcting comments that called the script 'windows-build.bat' instead of 'build-windows.bat' (#1133)
2019-05-29Fix and update projects/scriptsJens Pitkanen
2019-02-12Review scripts name and mini_al inclusionRay
2019-01-10WARNING: Renamed module: audio -> raudioRay
Planning to promote raudio module as a simple and easy-to-use front-end for the amazing mini_al library, so the name change. Name comes from raylib-audio but in spanish it also remembers to word "raudo", meaning "very fast", an analogy that fits perfectly to the usefulness and performance of the library! Consequently, raylib version has been bumped to 2.4-dev.
2019-01-08Add project/scriptsJens Pitkanen