diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2015-10-21 03:46:28 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2015-10-21 03:46:28 +0000 |
| commit | 9ccee73baca0fd7ecb95c90cb983133b737c6c55 (patch) | |
| tree | 66fea1e6521df31727431520fe3c1ead1896bc5d /Common/make | |
| download | DiligentCore-9ccee73baca0fd7ecb95c90cb983133b737c6c55.tar.gz DiligentCore-9ccee73baca0fd7ecb95c90cb983133b737c6c55.zip | |
Release v1.0.0
Diffstat (limited to 'Common/make')
| -rw-r--r-- | Common/make/AppCommon.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Common/make/AppCommon.mk b/Common/make/AppCommon.mk new file mode 100644 index 00000000..454fcf19 --- /dev/null +++ b/Common/make/AppCommon.mk @@ -0,0 +1,11 @@ + +APP_PLATFORM := android-19 +APP_ABI := x86 armeabi-v7a +NDK_TOOLCHAIN_VERSION := 4.9 +APP_STL := gnustl_static + +ifeq ($(APP_OPTIM),release) + APP_CFLAGS := -O2 -DNDEBUG -g $(APP_CFLAGS) +else + APP_CFLAGS := -O0 -g -D_DEBUG $(APP_CFLAGS) +endif
\ No newline at end of file |
