diff options
| author | Ray <[email protected]> | 2023-03-13 23:13:02 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-03-13 23:13:02 +0100 |
| commit | 5a2c49b9541493b446291f2ff6a241522432b478 (patch) | |
| tree | 6aa2612dd4a6605c310227f8bebdba72bb994d74 /examples/Makefile | |
| parent | 90ec0d52e045b4b3be9e2a7cd8d18a742882e457 (diff) | |
| download | raylib-5a2c49b9541493b446291f2ff6a241522432b478.tar.gz raylib-5a2c49b9541493b446291f2ff6a241522432b478.zip | |
Updated Makefiles to include all missing new examples
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/Makefile b/examples/Makefile index 6b0b4a84..04bd14e6 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -30,7 +30,7 @@ PLATFORM ?= PLATFORM_DESKTOP # Define required raylib variables PROJECT_NAME ?= raylib_examples -RAYLIB_VERSION ?= 4.2.0 +RAYLIB_VERSION ?= 4.5.0 RAYLIB_PATH ?= .. # Locations of raylib.h and libraylib.a/libraylib.so @@ -129,7 +129,7 @@ endif RAYLIB_RELEASE_PATH ?= $(RAYLIB_PATH)/src ifeq ($(PLATFORM),PLATFORM_WEB) - ifeq ($(PLATFORM_OS),WINDOWS) + ifeq ($(PLATFORM_OS),WINDOWS) # Emscripten required variables EMSDK_PATH ?= C:/emsdk EMSCRIPTEN_PATH ?= $(EMSDK_PATH)/upstream/emscripten @@ -137,7 +137,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB) PYTHON_PATH = $(EMSDK_PATH)/python/3.9.2-1_64bit NODE_PATH = $(EMSDK_PATH)/node/14.15.5_64bit/bin export PATH = $(EMSDK_PATH);$(EMSCRIPTEN_PATH);$(CLANG_PATH);$(NODE_PATH);$(PYTHON_PATH):$$(PATH) - endif + endif endif # Define default C compiler: CC @@ -489,6 +489,7 @@ MODELS = \ models/models_billboard \ models/models_box_collisions \ models/models_cubicmap \ + models/models_draw_cube_texture \ models/models_first_person_maze \ models/models_geometric_shapes \ models/models_mesh_generation \ @@ -531,7 +532,8 @@ AUDIO = \ audio/audio_music_stream \ audio/audio_raw_stream \ audio/audio_sound_loading \ - audio/audio_stream_effects + audio/audio_stream_effects \ + audio/audio_mixed_processor CURRENT_MAKEFILE = $(lastword $(MAKEFILE_LIST)) |
