summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
diff options
context:
space:
mode:
authorRay San <[email protected]>2017-10-30 13:51:46 +0100
committerRay San <[email protected]>2017-10-30 13:51:46 +0100
commit415e7e972c920cbf3194c4dfbbfe402d7c4406c5 (patch)
tree5d99b048337fe996343d3c7f518e7ac71c39aef7 /examples/Makefile
parentf460b3842e76e110daf0d1e81c39fb9f1b44e95e (diff)
downloadraylib-415e7e972c920cbf3194c4dfbbfe402d7c4406c5.tar.gz
raylib-415e7e972c920cbf3194c4dfbbfe402d7c4406c5.zip
Review some issues, view description
- Review RPI compilation (core_drop_files not supported) - Review ImageFormat(), some issues - GetTextureData() reviewed for RPI
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 2942f110..485368c4 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -267,7 +267,6 @@ EXAMPLES = \
core/core_input_gamepad \
core/core_random_values \
core/core_color_select \
- core/core_drop_files \
core/core_storage_values \
core/core_gestures_detection \
core/core_3d_mode \
@@ -326,6 +325,10 @@ EXAMPLES = \
physac/physics_restitution \
physac/physics_shatter \
fix_dylib \
+
+ifneq ($(PLATFORM),PLATFORM_RPI)
+ EXAMPLES += core/core_drop_files
+endif
CURRENT_MAKEFILE = $(lastword $(MAKEFILE_LIST))