CMakeLists.txt
3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
if(APPLE)
set(COCOS_BASE_SPECIFIC_SRC
base/CCUserDefault-apple.mm
base/CCController-apple.mm
)
elseif(ANDROID)
set(COCOS_BASE_SPECIFIC_SRC
base/CCUserDefault-android.cpp
base/CCController-android.cpp
)
elseif(LINUX OR WINDOWS)
set(COCOS_BASE_SPECIFIC_SRC
base/CCController-linux-win32.cpp
)
endif()
set(COCOS_BASE_HEADER
base/pvr.h
base/CCValue.h
base/CCEventListenerMouse.h
base/atitc.h
base/utlist.h
base/CCEventTouch.h
base/CCData.h
base/ccMacros.h
base/CCEventAcceleration.h
base/CCEventListenerKeyboard.h
base/CCController.h
base/CCTouch.h
base/base64.h
base/CCEventListenerController.h
base/s3tc.h
base/etc1.h
base/CCGameController.h
base/CCConsole.h
base/ccConstants.h
base/CCEvent.h
base/ccTypes.h
base/CCAsyncTaskPool.h
base/ccRandom.h
base/CCRef.h
base/CCProfiling.h
base/ObjectFactory.h
base/CCProperties.h
base/CCVector.h
base/CCEventCustom.h
base/CCEventKeyboard.h
base/CCNinePatchImageParser.h
base/CCEventListenerCustom.h
base/CCEventDispatcher.h
base/uthash.h
base/ccUtils.h
base/CCEventController.h
base/CCRefPtr.h
base/CCDirector.h
base/CCEventListenerFocus.h
base/CCUserDefault.h
base/ccConfig.h
base/ccFPSImages.h
base/ZipUtils.h
base/CCMap.h
base/ccUTF8.h
base/CCScriptSupport.h
base/CCEventFocus.h
base/CCConfiguration.h
base/CCProtocols.h
base/TGAlib.h
base/CCEventMouse.h
base/CCIMEDelegate.h
base/CCNS.h
base/CCAutoreleasePool.h
base/CCStencilStateManager.h
base/CCEventListenerTouch.h
base/CCEventListenerAcceleration.h
base/firePngData.h
base/ccCArray.h
base/CCEventListener.h
base/CCScheduler.h
base/CCEventType.h
base/CCIMEDispatcher.h
)
set(COCOS_BASE_SRC
base/CCAsyncTaskPool.cpp
base/CCAutoreleasePool.cpp
base/CCConfiguration.cpp
base/CCConsole.cpp
base/CCController.cpp
base/CCData.cpp
base/CCNinePatchImageParser.cpp
base/CCDirector.cpp
base/CCEvent.cpp
base/CCEventAcceleration.cpp
base/CCEventController.cpp
base/CCEventCustom.cpp
base/CCEventDispatcher.cpp
base/CCEventFocus.cpp
base/CCEventKeyboard.cpp
base/CCEventListener.cpp
base/CCEventListenerAcceleration.cpp
base/CCEventListenerController.cpp
base/CCEventListenerCustom.cpp
base/CCEventListenerFocus.cpp
base/CCEventListenerKeyboard.cpp
base/CCEventListenerMouse.cpp
base/CCEventListenerTouch.cpp
base/CCEventMouse.cpp
base/CCEventTouch.cpp
base/CCIMEDispatcher.cpp
base/CCNS.cpp
base/CCProfiling.cpp
base/CCProperties.cpp
base/CCRef.cpp
base/CCScheduler.cpp
base/CCScriptSupport.cpp
base/CCTouch.cpp
base/CCUserDefault.cpp
base/CCValue.cpp
base/ObjectFactory.cpp
base/CCStencilStateManager.cpp
base/TGAlib.cpp
base/ZipUtils.cpp
base/atitc.cpp
base/base64.cpp
base/ccCArray.cpp
base/ccFPSImages.c
base/ccRandom.cpp
base/ccTypes.cpp
base/ccUTF8.cpp
base/ccUtils.cpp
base/etc1.cpp
base/pvr.cpp
base/s3tc.cpp
${COCOS_BASE_SPECIFIC_SRC}
)