Skip to content

Commit 6461cde

Browse files
committed
Initial import.
0 parents  commit 6461cde

File tree

1,025 files changed

+491316
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,025 files changed

+491316
-0
lines changed

.gitattributes

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files we want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.c text
7+
*.h text
8+
*.cpp text
9+
*.m text
10+
*.mm text
11+
*.pbxproj text
12+
*.gitattributes text
13+
*.mk text
14+
*.lc text
15+
16+
# Declare files that will always have CRLF line endings on checkout.
17+
*.sln text eol=crlf
18+
*.vcproj text eol=crlf
19+
*.vsprops text eol=crlf
20+
*.rules text eol=crlf
21+
22+
# Denote all files that are truly binary and should not be modified.
23+
*.png binary
24+
*.jpg binary
25+
*.rev binary
26+
*.livecode binary
27+
28+

.gitignore

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Specific files #
2+
##################
3+
engine/src/hashedstrings.cpp
4+
engine/src/encodederrors.cpp
5+
engine/src/startupstack.cpp
6+
engine/src/linuxstubs.cpp
7+
lcidlc/src/EncodedSupport.c
8+
9+
# Compiled source #
10+
###################
11+
*.com
12+
*.class
13+
*.dll
14+
*.exe
15+
*.o
16+
*.so
17+
18+
# Packages #
19+
############
20+
# it's better to unpack these files and commit the raw source
21+
# git has its own built in compression methods
22+
*.7z
23+
*.dmg
24+
*.gz
25+
*.iso
26+
*.jar
27+
*.rar
28+
*.tar
29+
*.zip
30+
31+
# Logs and databases #
32+
######################
33+
*.log
34+
*.sql
35+
*.sqlite
36+
37+
# OS generated files #
38+
######################
39+
.DS_Store
40+
.DS_Store?
41+
._*
42+
.Spotlight-V100
43+
.Trashes
44+
Icon?
45+
ehthumbs.db
46+
Thumbs.db
47+
48+
# Versioning files #
49+
####################
50+
.svn/
51+
52+
# Project setting files #
53+
#########################
54+
*.pbxuser
55+
*.perspectivev3
56+
xcuserdata/
57+
*.vcproj.*.user
58+
*.ncb
59+
*.suo
60+
61+
# Build folders #
62+
#################
63+
_build/
64+
_cache/

Android.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include $(call all-subdir-makefiles)

Application.mk

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
APP_BUILD_SCRIPT := $(call my-dir)/Android.mk
2+
3+
APP_PLATFORM := android-8
4+
5+
# NOTE: Default CPP settings add no-exceptions no-rtti so don't need to specify
6+
7+
ifeq ($(MODE),debug)
8+
9+
APP_PROJECT_PATH := $(call my-dir)/_build/android/debug
10+
11+
APP_OPTIM := debug
12+
APP_CPPFLAGS += -D_MOBILE -DTARGET_PLATFORM_MOBILE -DTARGET_SUBPLATFORM_ANDROID -D_DEBUG -fvisibility=hidden -g
13+
APP_CFLAGS += -D_MOBILE -DTARGET_PLATFORM_MOBILE -DTARGET_SUBPLATFORM_ANDROID -D_DEBUG -fvisibility=hidden -g
14+
15+
else
16+
17+
APP_PROJECT_PATH := $(call my-dir)/_build/android/release
18+
19+
APP_OPTIM := release
20+
APP_CPPFLAGS += -D_MOBILE -DTARGET_PLATFORM_MOBILE -DTARGET_SUBPLATFORM_ANDROID -D_RELEASE -DNDEBUG -fvisibility=hidden -g
21+
APP_CFLAGS += -D_MOBILE -DTARGET_PLATFORM_MOBILE -DTARGET_SUBPLATFORM_ANDROID -D_RELEASE -DNDEBUG -fvisibility=hidden -g
22+
23+
endif

0 commit comments

Comments
 (0)