Skip to content

Commit df3aa21

Browse files
author
James Chen
committed
Merge pull request #1 from dumganhar/master
First commit.
2 parents 10f5cad + c7bf0a6 commit df3aa21

File tree

629 files changed

+286322
-13
lines changed

Some content is hidden

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

629 files changed

+286322
-13
lines changed

.gitignore

Lines changed: 102 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,102 @@
1-
# Compiled Object files
2-
*.slo
3-
*.lo
4-
*.o
5-
6-
# Compiled Dynamic libraries
7-
*.so
8-
*.dylib
9-
10-
# Compiled Static libraries
11-
*.lai
12-
*.la
13-
*.a
1+
# Ignore thumbnails created by windows
2+
Thumbs.db
3+
4+
# Ignore files build by Visual Studio
5+
*.obj
6+
*.exe
7+
*.pdb
8+
*.aps
9+
*.vcproj.*.user
10+
*.vspscc
11+
*_i.c
12+
*.i
13+
*.icf
14+
*_p.c
15+
*.ncb
16+
*.suo
17+
*.tlb
18+
*.tlh
19+
*.bak
20+
*.cache
21+
*.ilk
22+
*.log
23+
[Bb]in
24+
[Dd]ebug/
25+
[Dd]ebug.win32/
26+
*.sbr
27+
*.sdf
28+
obj/
29+
[Rr]elease/
30+
[Rr]elease.win32/
31+
_ReSharper*/
32+
[Tt]est[Rr]esult*
33+
ipch/
34+
*.opensdf
35+
36+
# Ignore files build by ndk and eclipse
37+
libs/
38+
bin/
39+
obj/
40+
gen/
41+
assets/
42+
local.properties
43+
44+
# Ignore python compiled files
45+
*.pyc
46+
47+
# Ignore files build by airplay and marmalade
48+
build_*_xcode/
49+
build_*_vc10/
50+
51+
# Ignore files build by xcode
52+
*.mode*v*
53+
*.pbxuser
54+
*.xcbkptlist
55+
*.xcworkspacedata
56+
*.xcuserstate
57+
*.xccheckout
58+
xcschememanagement.plist
59+
.DS_Store
60+
._.*
61+
xcuserdata/
62+
DerivedData/
63+
64+
# Ignore files built by AppCode
65+
.idea/
66+
67+
# Ignore files built by bada
68+
.Simulator-Debug/
69+
.Target-Debug/
70+
.Target-Release/
71+
72+
# Ignore files built by blackberry
73+
Simulator/
74+
Device-Debug/
75+
Device-Release/
76+
77+
# Ignore vim swaps
78+
*.swp
79+
*.swo
80+
81+
# Ignore files created by create_project.py
82+
projects/
83+
84+
# Ignore config files in javascript bindings generator
85+
tools/tojs/user.cfg
86+
# ... userconf.ini generated if running from tools/tojs
87+
tools/tojs/userconf.ini
88+
tools/tolua/userconf.ini
89+
# ... userconf.ini generated if running from tools/jenkins_scripts/mac/android/
90+
tools/jenkins_scripts/mac/android/userconf.ini
91+
92+
# CTags
93+
tags
94+
95+
# ignore files, created with make-all-linux-project script
96+
/lib
97+
98+
# Cmake files
99+
CMakeCache.txt
100+
CMakeFiles
101+
Makefile
102+
cmake_install.cmake

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "cocos2d-x"]
2+
path = cocos2d-x
3+
url = git://github.com/cocos2d/cocos2d-x.git
4+
[submodule "tests"]
5+
path = tests
6+
url = git://github.com/cocos2d/cocos2d-js-tests.git

0 commit comments

Comments
 (0)