summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-10-17 19:10:28 +0200
committerraysan5 <[email protected]>2021-10-17 19:10:28 +0200
commit0f8caeb1861d7413a7bbd6d8290b7f9d7bf896b2 (patch)
tree517c3966a00d8f9215a624cdba702622e8b82606 /examples
parentc20df9aa47f3a9bdaf974d7e0f6c586a5852fca2 (diff)
downloadraylib-0f8caeb1861d7413a7bbd6d8290b7f9d7bf896b2.tar.gz
raylib-0f8caeb1861d7413a7bbd6d8290b7f9d7bf896b2.zip
Added new examples to Makefile
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 9e40300b..c16dbed5 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -378,6 +378,7 @@ endif
# Define all object files required
CORE = \
core/core_basic_window \
+ core/core_basic_screen_manager \
core/core_input_keys \
core/core_input_mouse \
core/core_input_mouse_wheel \
@@ -401,7 +402,9 @@ CORE = \
core/core_loading_thread \
core/core_quat_conversion \
core/core_window_flags \
- core/core_split_screen
+ core/core_split_screen \
+ core/core_smooth_pixelperfect \
+ core/core_custom_frame_control
SHAPES = \
shapes/shapes_basic_shapes \
@@ -440,7 +443,7 @@ TEXTURES = \
textures/textures_bunnymark \
textures/textures_blend_modes \
textures/textures_draw_tiled \
- textures/textures_poly
+ textures/textures_polygon
TEXT = \
text/text_raylib_fonts \
@@ -465,6 +468,8 @@ MODELS = \
models/models_mesh_generation \
models/models_mesh_picking \
models/models_loading \
+ models/models_loading_vox \
+ models/models_loading_gltf \
models/models_orthographic_projection \
models/models_rlgl_solar_system \
models/models_skybox \
@@ -481,6 +486,7 @@ SHADERS = \
shaders/shaders_raymarching \
shaders/shaders_texture_drawing \
shaders/shaders_texture_waves \
+ shaders/shaders_texture_outline \
shaders/shaders_julia_set \
shaders/shaders_eratosthenes \
shaders/shaders_basic_lighting \