summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
AgeCommit message (Collapse)Author
2020-09-18Updated build script to generate .a on WebAssemblyraysan5
This is the recommended way
2020-09-18Review Makefile pathraysan5
2020-08-23Review last PR formatting to follow raylib standardsraysan5
2020-08-23work on quat and matrix math - deleted multiple copies of raymath.h causing ↵chriscamacho
issues (#1359) Co-authored-by: codifies <[email protected]>
2020-08-08Review Makefiles for WEB compilationRay
2020-07-14Update Makefile emsdk pathsraysan5
2020-05-22Added Blend Modes example. (#1261)Karlo Licudine
2020-03-28Revert "Update compilation warning flags (#1151)"raysan5
This reverts commit 2528854664b78a7db24cbe97b5b4e8bd52e1f18c.
2020-03-26Update compilation warning flags (#1151)Dani Martin
* Update compilation warning flags Removed the -Wall flag that allow many warnings and added manually all the warning flags that don't generate warnings in the src/external folder. Specifically, these are some of the flags reporting errors in src/external: -Wmissing-prototypes -Wunused-variable -Wunused-value -Wunused-parameter -Wunused-function * Uptade compilation flags in examples with missing -std=c99
2020-03-24as per request spotlight example (#1146)chriscamacho
Co-authored-by: codifies <[email protected]>
2020-03-05Update raylib versionRay
2020-03-01Update MakefileRay
2020-02-20Update Makefile paths to use emscripten upstreamRay
Note that emscripten upstream branch implements the new asyncify implementation, expected to be faster than emterpreter one.
2020-02-09REVIEWED: Makefile, examples clean target #1087raysan5
2020-02-06Review ALL games to raylib 3.0Ray
2020-01-30[build] Makefile examples modularizationRay
Now examples can be compiled by module, that's useful when compilation fails at some point
2020-01-30Some examples tweaksRay
2020-01-15Review Makefiles for web compilationRay
2020-01-09Renamed directoryRay
2019-12-16Review flags and web compilationRay
2019-11-24Review PR #1022raysan5
Actually OpenAL is not used any more, it should be using CoreAudio
2019-11-24fix example build on macos (#1022)Richard Smith
2019-10-11corrected examples Makefile target (#985)chriscamacho
2019-09-22contributed simple shader example (#973)chriscamacho
Contributed simple shader example
2019-09-12RENAMED: text_sprite_font > text_font_spritefontRay
2019-09-12REDESIGNED: models_obj_loading > models_loadingRay
2019-08-27examples makefile not deleting examples in Linux (#955)chriscamacho
I'm not sure why the clean command is so complex (especially given that find -type f -executable | xargs rm -fv works!) but I fixed the version as is, to support x-pie-executable which was preventing it deleting anything on my system...
2019-07-28Added scissor test and mouse painting examples proposed in #890 (#919)ChrisDill
- Updated Makefile with new examples
2019-07-27#917 This commit changes the path to 'shell.html' in all Makefiles (#918)Antonio Radovcic
2019-06-29add multi channel audio to raudio (#895)chriscamacho
* added multi channel sound replay to raudio added -fPIC to Makefile for Linux added simple lighting and audio multi channel to examples Makefile * not properly reporting audio buffer pool size...
2019-06-12Review DEBUG modeRay
2019-06-09Update MakefileXiaochuanWang
a minor issue: where the location of the file "raylib.rc.data" is wrong, and this will cause an error in compilation.
2019-05-22Move emscripten web shell to srcRay
2019-05-21Review MakefilesRay
2019-05-21Review pathsRay
2019-05-17examples reviewRay
2019-05-16new example: shaders_eratosthenesRay
Contributed by ProfJski
2019-05-16Review build config on webRay
2019-05-15Added new examples to MakefileRay
2019-05-14Improve support for web buildingRay
Note that building examples for web as they are (no code adaptation for web avoiding while loop) implies using the emterpreter... and that's very slow!
2019-05-12Added julia set shader example.eggmund
2019-05-07NO SUPPORT_BUSY_WAIT_LOOP by defaultRay
2019-05-02Update MakefileRay
2019-04-28Minor tweaksraysan5
2019-04-23WARNING: Issues on web buildingRay
Found some issues when building for web using latest emscripten 1.38.30, traced the error and found that eglGetProcAdress does not return function pointers for VAO functionality, supported by extension. It requires more investigation but now it works (avoiding VAO usage)
2019-04-12Review some examplesRay
2019-04-07Happy new year 2019ChillerDragon
2019-01-09Merge pull request #718 from MarcoLizza/shaders-uniforms-arrayRay
Shaders uniforms array
2019-01-09Adding basic palette-switching example using uniform arrays.Marco Lizza
2019-01-09Fixing typo in examples makefile, preventing build.Marco Lizza