-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathApplication.mk
More file actions
24 lines (18 loc) · 785 Bytes
/
Copy pathApplication.mk
File metadata and controls
24 lines (18 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# The Application.mk is used with the NDK to get things to
# build properly without using the default Google paths. Required
# because forcing people to build in an arbitrary path structure
# is stupid. I deny your ontology and replace it with my own.
# Set the root project directory (where the Android.mk will be)
APP_PROJECT_PATH := ./
# Target Gingerbread
APP_PLATFORM := android-9
# Set our build script because it's not in ./jni
APP_BUILD_SCRIPT := ./Android-NDK.mk
# Use the debug level of optimizations for now. You can uncomment the
# release line and comment the debug line if needed.
APP_OPTIM := debug
#APP_OPTIM := release
# We have no CPP Flags, but just in case. These are also used as CFlags.
APP_CPPFLAGS :=
# We starget the x86 ABI for now
APP_ABI := armeabi