diff options
| author | raysan5 <raysan5@gmail.com> | 2016-08-26 19:40:37 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-08-26 19:40:37 +0200 |
| commit | 4770e2010d2451d28305bea874f81e50ed6560f5 (patch) | |
| tree | 52defea443cc02eeb384a81f7386afeb0e4290da /src | |
| parent | 5d88eb1d95b188fad1d84994f45291febe9fa6c1 (diff) | |
| download | raylib-4770e2010d2451d28305bea874f81e50ed6560f5.tar.gz raylib-4770e2010d2451d28305bea874f81e50ed6560f5.zip | |
Review Android project
Diffstat (limited to 'src')
| -rw-r--r-- | src/android/jni/Android.mk | 3 | ||||
| -rw-r--r-- | src/core.c | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/android/jni/Android.mk b/src/android/jni/Android.mk index 66851d08..687c6577 100644 --- a/src/android/jni/Android.mk +++ b/src/android/jni/Android.mk @@ -4,7 +4,7 @@ # # Static library compilation # -# Copyright (c) 2014 Ramon Santamaria (Ray San - raysan@raysanweb.com) +# Copyright (c) 2014-2016 Ramon Santamaria (@raysan5) # # This software is provided "as-is", without any express or implied warranty. In no event # will the authors be held liable for any damages arising from the use of this software. @@ -42,7 +42,6 @@ LOCAL_SRC_FILES :=\ ../../textures.c \ ../../text.c \ ../../shapes.c \ - ../../gestures.c \ ../../models.c \ ../../utils.c \ ../../audio.c \ @@ -48,8 +48,10 @@ #define GESTURES_IMPLEMENTATION #include "gestures.h" // Gestures detection functionality -#define CAMERA_IMPLEMENTATION -#include "camera.h" // Camera system functionality +#if !defined(PLATFORM_ANDROID) + #define CAMERA_IMPLEMENTATION + #include "camera.h" // Camera system functionality +#endif #include <stdio.h> // Standard input / output lib #include <stdlib.h> // Declares malloc() and free() for memory management, rand(), atexit() |
