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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
840092821CCF406200F89A56 /* auxiliar.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092611CCF406200F89A56 /* auxiliar.c */; };
840092831CCF406200F89A56 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092631CCF406200F89A56 /* buffer.c */; };
840092841CCF406200F89A56 /* compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092651CCF406200F89A56 /* compat.c */; };
840092851CCF406200F89A56 /* except.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092671CCF406200F89A56 /* except.c */; };
840092861CCF406200F89A56 /* inet.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092691CCF406200F89A56 /* inet.c */; };
840092871CCF406200F89A56 /* io.c in Sources */ = {isa = PBXBuildFile; fileRef = 8400926B1CCF406200F89A56 /* io.c */; };
840092881CCF406200F89A56 /* luasocket.c in Sources */ = {isa = PBXBuildFile; fileRef = 8400926D1CCF406200F89A56 /* luasocket.c */; };
840092891CCF406200F89A56 /* mime.c in Sources */ = {isa = PBXBuildFile; fileRef = 8400926F1CCF406200F89A56 /* mime.c */; };
8400928A1CCF406200F89A56 /* options.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092711CCF406200F89A56 /* options.c */; };
8400928B1CCF406200F89A56 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092741CCF406200F89A56 /* select.c */; };
8400928C1CCF406200F89A56 /* serial.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092761CCF406200F89A56 /* serial.c */; };
8400928D1CCF406200F89A56 /* tcp.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092781CCF406200F89A56 /* tcp.c */; };
8400928E1CCF406200F89A56 /* timeout.c in Sources */ = {isa = PBXBuildFile; fileRef = 8400927A1CCF406200F89A56 /* timeout.c */; };
8400928F1CCF406200F89A56 /* udp.c in Sources */ = {isa = PBXBuildFile; fileRef = 8400927C1CCF406200F89A56 /* udp.c */; };
840092901CCF406200F89A56 /* unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 8400927E1CCF406200F89A56 /* unix.c */; };
840092911CCF406200F89A56 /* usocket.c in Sources */ = {isa = PBXBuildFile; fileRef = 840092801CCF406200F89A56 /* usocket.c */; };
842A59A91C85B76100EA2815 /* fpconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 842A59A31C85B76100EA2815 /* fpconv.c */; };
842A59AA1C85B76100EA2815 /* lua_cjson.c in Sources */ = {isa = PBXBuildFile; fileRef = 842A59A51C85B76100EA2815 /* lua_cjson.c */; };
842A59AB1C85B76100EA2815 /* strbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = 842A59A61C85B76100EA2815 /* strbuf.c */; };
8445EB131D4C9D2100397F5E /* uint64.c in Sources */ = {isa = PBXBuildFile; fileRef = 8445EB121D4C9D2100397F5E /* uint64.c */; };
849CC46B1C9846C800D4D510 /* int64.c in Sources */ = {isa = PBXBuildFile; fileRef = 849CC46A1C9846C800D4D510 /* int64.c */; };
84ED5C081C4D0749006965FF /* bit.c in Sources */ = {isa = PBXBuildFile; fileRef = 84ED5C071C4D0749006965FF /* bit.c */; };
84EF238C1C4CCD3F0093A49A /* lapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23551C4CCD3F0093A49A /* lapi.c */; };
84EF238D1C4CCD3F0093A49A /* lauxlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23571C4CCD3F0093A49A /* lauxlib.c */; };
84EF238E1C4CCD3F0093A49A /* lbaselib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23591C4CCD3F0093A49A /* lbaselib.c */; };
84EF238F1C4CCD3F0093A49A /* lcode.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF235A1C4CCD3F0093A49A /* lcode.c */; };
84EF23901C4CCD3F0093A49A /* ldblib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF235C1C4CCD3F0093A49A /* ldblib.c */; };
84EF23911C4CCD3F0093A49A /* ldebug.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF235D1C4CCD3F0093A49A /* ldebug.c */; };
84EF23921C4CCD3F0093A49A /* ldo.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF235F1C4CCD3F0093A49A /* ldo.c */; };
84EF23931C4CCD3F0093A49A /* ldump.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23611C4CCD3F0093A49A /* ldump.c */; };
84EF23941C4CCD3F0093A49A /* lfunc.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23621C4CCD3F0093A49A /* lfunc.c */; };
84EF23951C4CCD3F0093A49A /* lgc.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23641C4CCD3F0093A49A /* lgc.c */; };
84EF23961C4CCD3F0093A49A /* linit.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23661C4CCD3F0093A49A /* linit.c */; };
84EF23971C4CCD3F0093A49A /* liolib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23671C4CCD3F0093A49A /* liolib.c */; };
84EF23981C4CCD3F0093A49A /* llex.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23681C4CCD3F0093A49A /* llex.c */; };
84EF23991C4CCD3F0093A49A /* lmathlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF236B1C4CCD3F0093A49A /* lmathlib.c */; };
84EF239A1C4CCD3F0093A49A /* lmem.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF236C1C4CCD3F0093A49A /* lmem.c */; };
84EF239B1C4CCD3F0093A49A /* loadlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF236E1C4CCD3F0093A49A /* loadlib.c */; };
84EF239C1C4CCD3F0093A49A /* lobject.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF236F1C4CCD3F0093A49A /* lobject.c */; };
84EF239D1C4CCD3F0093A49A /* lopcodes.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23711C4CCD3F0093A49A /* lopcodes.c */; };
84EF239E1C4CCD3F0093A49A /* loslib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23731C4CCD3F0093A49A /* loslib.c */; };
84EF239F1C4CCD3F0093A49A /* lparser.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23741C4CCD3F0093A49A /* lparser.c */; };
84EF23A01C4CCD3F0093A49A /* lstate.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23761C4CCD3F0093A49A /* lstate.c */; };
84EF23A11C4CCD3F0093A49A /* lstring.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23781C4CCD3F0093A49A /* lstring.c */; };
84EF23A21C4CCD3F0093A49A /* lstrlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF237A1C4CCD3F0093A49A /* lstrlib.c */; };
84EF23A31C4CCD3F0093A49A /* ltable.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF237B1C4CCD3F0093A49A /* ltable.c */; };
84EF23A41C4CCD3F0093A49A /* ltablib.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF237D1C4CCD3F0093A49A /* ltablib.c */; };
84EF23A51C4CCD3F0093A49A /* ltm.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF237E1C4CCD3F0093A49A /* ltm.c */; };
84EF23A81C4CCD3F0093A49A /* lundump.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23851C4CCD3F0093A49A /* lundump.c */; };
84EF23A91C4CCD3F0093A49A /* lvm.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23871C4CCD3F0093A49A /* lvm.c */; };
84EF23AA1C4CCD3F0093A49A /* lzio.c in Sources */ = {isa = PBXBuildFile; fileRef = 84EF23891C4CCD3F0093A49A /* lzio.c */; };
84F8B8B11C45677A00AE9B8F /* pb.c in Sources */ = {isa = PBXBuildFile; fileRef = 84F8B8B01C45677A00AE9B8F /* pb.c */; };
84F8B8B31C45678E00AE9B8F /* tolua.c in Sources */ = {isa = PBXBuildFile; fileRef = 84F8B8B21C45678E00AE9B8F /* tolua.c */; };
84F8B8B51C45679700AE9B8F /* struct.c in Sources */ = {isa = PBXBuildFile; fileRef = 84F8B8B41C45679700AE9B8F /* struct.c */; };
84F8B8B71C45679C00AE9B8F /* lpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 84F8B8B61C45679C00AE9B8F /* lpeg.c */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
0F4B04D01800959F002EA938 /* tolua.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = tolua.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
0F4B04D71800959F002EA938 /* tolua-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "tolua-Info.plist"; sourceTree = "<group>"; };
0F4B04D91800959F002EA938 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0F4B04DB1800959F002EA938 /* tolua-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "tolua-Prefix.pch"; sourceTree = "<group>"; };
840092611CCF406200F89A56 /* auxiliar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = auxiliar.c; sourceTree = "<group>"; };
840092621CCF406200F89A56 /* auxiliar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auxiliar.h; sourceTree = "<group>"; };
840092631CCF406200F89A56 /* buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = buffer.c; sourceTree = "<group>"; };
840092641CCF406200F89A56 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
840092651CCF406200F89A56 /* compat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compat.c; sourceTree = "<group>"; };
840092661CCF406200F89A56 /* compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = compat.h; sourceTree = "<group>"; };
840092671CCF406200F89A56 /* except.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = except.c; sourceTree = "<group>"; };
840092681CCF406200F89A56 /* except.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = except.h; sourceTree = "<group>"; };
840092691CCF406200F89A56 /* inet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inet.c; sourceTree = "<group>"; };
8400926A1CCF406200F89A56 /* inet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inet.h; sourceTree = "<group>"; };
8400926B1CCF406200F89A56 /* io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = io.c; sourceTree = "<group>"; };
8400926C1CCF406200F89A56 /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io.h; sourceTree = "<group>"; };
8400926D1CCF406200F89A56 /* luasocket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = luasocket.c; sourceTree = "<group>"; };
8400926E1CCF406200F89A56 /* luasocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = luasocket.h; sourceTree = "<group>"; };
8400926F1CCF406200F89A56 /* mime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mime.c; sourceTree = "<group>"; };
840092701CCF406200F89A56 /* mime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mime.h; sourceTree = "<group>"; };
840092711CCF406200F89A56 /* options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = options.c; sourceTree = "<group>"; };
840092721CCF406200F89A56 /* options.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = options.h; sourceTree = "<group>"; };
840092731CCF406200F89A56 /* pierror.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pierror.h; sourceTree = "<group>"; };
840092741CCF406200F89A56 /* select.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = select.c; sourceTree = "<group>"; };
840092751CCF406200F89A56 /* select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = select.h; sourceTree = "<group>"; };
840092761CCF406200F89A56 /* serial.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = serial.c; sourceTree = "<group>"; };
840092771CCF406200F89A56 /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = "<group>"; };
840092781CCF406200F89A56 /* tcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tcp.c; sourceTree = "<group>"; };
840092791CCF406200F89A56 /* tcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp.h; sourceTree = "<group>"; };
8400927A1CCF406200F89A56 /* timeout.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = timeout.c; sourceTree = "<group>"; };
8400927B1CCF406200F89A56 /* timeout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timeout.h; sourceTree = "<group>"; };
8400927C1CCF406200F89A56 /* udp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = udp.c; sourceTree = "<group>"; };
8400927D1CCF406200F89A56 /* udp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udp.h; sourceTree = "<group>"; };
8400927E1CCF406200F89A56 /* unix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unix.c; sourceTree = "<group>"; };
8400927F1CCF406200F89A56 /* unix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unix.h; sourceTree = "<group>"; };
840092801CCF406200F89A56 /* usocket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = usocket.c; sourceTree = "<group>"; };
840092811CCF406200F89A56 /* usocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usocket.h; sourceTree = "<group>"; };
842A59A31C85B76100EA2815 /* fpconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fpconv.c; sourceTree = "<group>"; };
842A59A41C85B76100EA2815 /* fpconv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fpconv.h; sourceTree = "<group>"; };
842A59A51C85B76100EA2815 /* lua_cjson.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lua_cjson.c; sourceTree = "<group>"; };
842A59A61C85B76100EA2815 /* strbuf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strbuf.c; sourceTree = "<group>"; };
842A59A71C85B76100EA2815 /* strbuf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strbuf.h; sourceTree = "<group>"; };
8445EB121D4C9D2100397F5E /* uint64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = uint64.c; path = ../../uint64.c; sourceTree = "<group>"; };
849CC46A1C9846C800D4D510 /* int64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int64.c; path = ../../int64.c; sourceTree = "<group>"; };
84ED5C071C4D0749006965FF /* bit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bit.c; path = ../../bit.c; sourceTree = "<group>"; };
84EF23551C4CCD3F0093A49A /* lapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lapi.c; sourceTree = "<group>"; };
84EF23561C4CCD3F0093A49A /* lapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lapi.h; sourceTree = "<group>"; };
84EF23571C4CCD3F0093A49A /* lauxlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lauxlib.c; sourceTree = "<group>"; };
84EF23581C4CCD3F0093A49A /* lauxlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lauxlib.h; sourceTree = "<group>"; };
84EF23591C4CCD3F0093A49A /* lbaselib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lbaselib.c; sourceTree = "<group>"; };
84EF235A1C4CCD3F0093A49A /* lcode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lcode.c; sourceTree = "<group>"; };
84EF235B1C4CCD3F0093A49A /* lcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lcode.h; sourceTree = "<group>"; };
84EF235C1C4CCD3F0093A49A /* ldblib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldblib.c; sourceTree = "<group>"; };
84EF235D1C4CCD3F0093A49A /* ldebug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldebug.c; sourceTree = "<group>"; };
84EF235E1C4CCD3F0093A49A /* ldebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldebug.h; sourceTree = "<group>"; };
84EF235F1C4CCD3F0093A49A /* ldo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldo.c; sourceTree = "<group>"; };
84EF23601C4CCD3F0093A49A /* ldo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldo.h; sourceTree = "<group>"; };
84EF23611C4CCD3F0093A49A /* ldump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldump.c; sourceTree = "<group>"; };
84EF23621C4CCD3F0093A49A /* lfunc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lfunc.c; sourceTree = "<group>"; };
84EF23631C4CCD3F0093A49A /* lfunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lfunc.h; sourceTree = "<group>"; };
84EF23641C4CCD3F0093A49A /* lgc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lgc.c; sourceTree = "<group>"; };
84EF23651C4CCD3F0093A49A /* lgc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lgc.h; sourceTree = "<group>"; };
84EF23661C4CCD3F0093A49A /* linit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = linit.c; sourceTree = "<group>"; };
84EF23671C4CCD3F0093A49A /* liolib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = liolib.c; sourceTree = "<group>"; };
84EF23681C4CCD3F0093A49A /* llex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = llex.c; sourceTree = "<group>"; };
84EF23691C4CCD3F0093A49A /* llex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = llex.h; sourceTree = "<group>"; };
84EF236A1C4CCD3F0093A49A /* llimits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = llimits.h; sourceTree = "<group>"; };
84EF236B1C4CCD3F0093A49A /* lmathlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lmathlib.c; sourceTree = "<group>"; };
84EF236C1C4CCD3F0093A49A /* lmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lmem.c; sourceTree = "<group>"; };
84EF236D1C4CCD3F0093A49A /* lmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lmem.h; sourceTree = "<group>"; };
84EF236E1C4CCD3F0093A49A /* loadlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = loadlib.c; sourceTree = "<group>"; };
84EF236F1C4CCD3F0093A49A /* lobject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lobject.c; sourceTree = "<group>"; };
84EF23701C4CCD3F0093A49A /* lobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lobject.h; sourceTree = "<group>"; };
84EF23711C4CCD3F0093A49A /* lopcodes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lopcodes.c; sourceTree = "<group>"; };
84EF23721C4CCD3F0093A49A /* lopcodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lopcodes.h; sourceTree = "<group>"; };
84EF23731C4CCD3F0093A49A /* loslib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = loslib.c; sourceTree = "<group>"; };
84EF23741C4CCD3F0093A49A /* lparser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lparser.c; sourceTree = "<group>"; };
84EF23751C4CCD3F0093A49A /* lparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lparser.h; sourceTree = "<group>"; };
84EF23761C4CCD3F0093A49A /* lstate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lstate.c; sourceTree = "<group>"; };
84EF23771C4CCD3F0093A49A /* lstate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lstate.h; sourceTree = "<group>"; };
84EF23781C4CCD3F0093A49A /* lstring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lstring.c; sourceTree = "<group>"; };
84EF23791C4CCD3F0093A49A /* lstring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lstring.h; sourceTree = "<group>"; };
84EF237A1C4CCD3F0093A49A /* lstrlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lstrlib.c; sourceTree = "<group>"; };
84EF237B1C4CCD3F0093A49A /* ltable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ltable.c; sourceTree = "<group>"; };
84EF237C1C4CCD3F0093A49A /* ltable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ltable.h; sourceTree = "<group>"; };
84EF237D1C4CCD3F0093A49A /* ltablib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ltablib.c; sourceTree = "<group>"; };
84EF237E1C4CCD3F0093A49A /* ltm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ltm.c; sourceTree = "<group>"; };
84EF237F1C4CCD3F0093A49A /* ltm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ltm.h; sourceTree = "<group>"; };
84EF23811C4CCD3F0093A49A /* lua.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lua.h; sourceTree = "<group>"; };
84EF23831C4CCD3F0093A49A /* luaconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = luaconf.h; sourceTree = "<group>"; };
84EF23841C4CCD3F0093A49A /* lualib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lualib.h; sourceTree = "<group>"; };
84EF23851C4CCD3F0093A49A /* lundump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lundump.c; sourceTree = "<group>"; };
84EF23861C4CCD3F0093A49A /* lundump.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lundump.h; sourceTree = "<group>"; };
84EF23871C4CCD3F0093A49A /* lvm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lvm.c; sourceTree = "<group>"; };
84EF23881C4CCD3F0093A49A /* lvm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lvm.h; sourceTree = "<group>"; };
84EF23891C4CCD3F0093A49A /* lzio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lzio.c; sourceTree = "<group>"; };
84EF238A1C4CCD3F0093A49A /* lzio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lzio.h; sourceTree = "<group>"; };
84F8B8B01C45677A00AE9B8F /* pb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pb.c; path = ../../pb.c; sourceTree = "<group>"; };
84F8B8B21C45678E00AE9B8F /* tolua.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tolua.c; path = ../../tolua.c; sourceTree = "<group>"; };
84F8B8B41C45679700AE9B8F /* struct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = struct.c; path = ../../struct.c; sourceTree = "<group>"; };
84F8B8B61C45679C00AE9B8F /* lpeg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = lpeg.c; path = ../../lpeg.c; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0F4B04CD1800959F002EA938 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0F4B04C71800959F002EA938 = {
isa = PBXGroup;
children = (
0F4B04D51800959F002EA938 /* tolua */,
0F4B04D11800959F002EA938 /* Products */,
);
sourceTree = "<group>";
};
0F4B04D11800959F002EA938 /* Products */ = {
isa = PBXGroup;
children = (
0F4B04D01800959F002EA938 /* tolua.bundle */,
);
name = Products;
path = tolua;
sourceTree = "<group>";
};
0F4B04D51800959F002EA938 /* tolua */ = {
isa = PBXGroup;
children = (
842A59A21C85B76100EA2815 /* cjson */,
84EF23541C4CCD3F0093A49A /* lua */,
84F8B8B81C4567C100AE9B8F /* luasocket */,
84F8B8B61C45679C00AE9B8F /* lpeg.c */,
84ED5C071C4D0749006965FF /* bit.c */,
84F8B8B41C45679700AE9B8F /* struct.c */,
84F8B8B01C45677A00AE9B8F /* pb.c */,
849CC46A1C9846C800D4D510 /* int64.c */,
8445EB121D4C9D2100397F5E /* uint64.c */,
84F8B8B21C45678E00AE9B8F /* tolua.c */,
0F4B04D61800959F002EA938 /* Supporting Files */,
);
path = tolua;
sourceTree = "<group>";
};
0F4B04D61800959F002EA938 /* Supporting Files */ = {
isa = PBXGroup;
children = (
0F4B04D71800959F002EA938 /* tolua-Info.plist */,
0F4B04D81800959F002EA938 /* InfoPlist.strings */,
0F4B04DB1800959F002EA938 /* tolua-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
842A59A21C85B76100EA2815 /* cjson */ = {
isa = PBXGroup;
children = (
842A59A31C85B76100EA2815 /* fpconv.c */,
842A59A41C85B76100EA2815 /* fpconv.h */,
842A59A51C85B76100EA2815 /* lua_cjson.c */,
842A59A61C85B76100EA2815 /* strbuf.c */,
842A59A71C85B76100EA2815 /* strbuf.h */,
);
name = cjson;
path = ../../cjson;
sourceTree = "<group>";
};
84EF23541C4CCD3F0093A49A /* lua */ = {
isa = PBXGroup;
children = (
84EF23551C4CCD3F0093A49A /* lapi.c */,
84EF23561C4CCD3F0093A49A /* lapi.h */,
84EF23571C4CCD3F0093A49A /* lauxlib.c */,
84EF23581C4CCD3F0093A49A /* lauxlib.h */,
84EF23591C4CCD3F0093A49A /* lbaselib.c */,
84EF235A1C4CCD3F0093A49A /* lcode.c */,
84EF235B1C4CCD3F0093A49A /* lcode.h */,
84EF235C1C4CCD3F0093A49A /* ldblib.c */,
84EF235D1C4CCD3F0093A49A /* ldebug.c */,
84EF235E1C4CCD3F0093A49A /* ldebug.h */,
84EF235F1C4CCD3F0093A49A /* ldo.c */,
84EF23601C4CCD3F0093A49A /* ldo.h */,
84EF23611C4CCD3F0093A49A /* ldump.c */,
84EF23621C4CCD3F0093A49A /* lfunc.c */,
84EF23631C4CCD3F0093A49A /* lfunc.h */,
84EF23641C4CCD3F0093A49A /* lgc.c */,
84EF23651C4CCD3F0093A49A /* lgc.h */,
84EF23661C4CCD3F0093A49A /* linit.c */,
84EF23671C4CCD3F0093A49A /* liolib.c */,
84EF23681C4CCD3F0093A49A /* llex.c */,
84EF23691C4CCD3F0093A49A /* llex.h */,
84EF236A1C4CCD3F0093A49A /* llimits.h */,
84EF236B1C4CCD3F0093A49A /* lmathlib.c */,
84EF236C1C4CCD3F0093A49A /* lmem.c */,
84EF236D1C4CCD3F0093A49A /* lmem.h */,
84EF236E1C4CCD3F0093A49A /* loadlib.c */,
84EF236F1C4CCD3F0093A49A /* lobject.c */,
84EF23701C4CCD3F0093A49A /* lobject.h */,
84EF23711C4CCD3F0093A49A /* lopcodes.c */,
84EF23721C4CCD3F0093A49A /* lopcodes.h */,
84EF23731C4CCD3F0093A49A /* loslib.c */,
84EF23741C4CCD3F0093A49A /* lparser.c */,
84EF23751C4CCD3F0093A49A /* lparser.h */,
84EF23761C4CCD3F0093A49A /* lstate.c */,
84EF23771C4CCD3F0093A49A /* lstate.h */,
84EF23781C4CCD3F0093A49A /* lstring.c */,
84EF23791C4CCD3F0093A49A /* lstring.h */,
84EF237A1C4CCD3F0093A49A /* lstrlib.c */,
84EF237B1C4CCD3F0093A49A /* ltable.c */,
84EF237C1C4CCD3F0093A49A /* ltable.h */,
84EF237D1C4CCD3F0093A49A /* ltablib.c */,
84EF237E1C4CCD3F0093A49A /* ltm.c */,
84EF237F1C4CCD3F0093A49A /* ltm.h */,
84EF23811C4CCD3F0093A49A /* lua.h */,
84EF23831C4CCD3F0093A49A /* luaconf.h */,
84EF23841C4CCD3F0093A49A /* lualib.h */,
84EF23851C4CCD3F0093A49A /* lundump.c */,
84EF23861C4CCD3F0093A49A /* lundump.h */,
84EF23871C4CCD3F0093A49A /* lvm.c */,
84EF23881C4CCD3F0093A49A /* lvm.h */,
84EF23891C4CCD3F0093A49A /* lzio.c */,
84EF238A1C4CCD3F0093A49A /* lzio.h */,
);
path = lua;
sourceTree = SOURCE_ROOT;
};
84F8B8B81C4567C100AE9B8F /* luasocket */ = {
isa = PBXGroup;
children = (
840092611CCF406200F89A56 /* auxiliar.c */,
840092621CCF406200F89A56 /* auxiliar.h */,
840092631CCF406200F89A56 /* buffer.c */,
840092641CCF406200F89A56 /* buffer.h */,
840092651CCF406200F89A56 /* compat.c */,
840092661CCF406200F89A56 /* compat.h */,
840092671CCF406200F89A56 /* except.c */,
840092681CCF406200F89A56 /* except.h */,
840092691CCF406200F89A56 /* inet.c */,
8400926A1CCF406200F89A56 /* inet.h */,
8400926B1CCF406200F89A56 /* io.c */,
8400926C1CCF406200F89A56 /* io.h */,
8400926D1CCF406200F89A56 /* luasocket.c */,
8400926E1CCF406200F89A56 /* luasocket.h */,
8400926F1CCF406200F89A56 /* mime.c */,
840092701CCF406200F89A56 /* mime.h */,
840092711CCF406200F89A56 /* options.c */,
840092721CCF406200F89A56 /* options.h */,
840092731CCF406200F89A56 /* pierror.h */,
840092741CCF406200F89A56 /* select.c */,
840092751CCF406200F89A56 /* select.h */,
840092761CCF406200F89A56 /* serial.c */,
840092771CCF406200F89A56 /* socket.h */,
840092781CCF406200F89A56 /* tcp.c */,
840092791CCF406200F89A56 /* tcp.h */,
8400927A1CCF406200F89A56 /* timeout.c */,
8400927B1CCF406200F89A56 /* timeout.h */,
8400927C1CCF406200F89A56 /* udp.c */,
8400927D1CCF406200F89A56 /* udp.h */,
8400927E1CCF406200F89A56 /* unix.c */,
8400927F1CCF406200F89A56 /* unix.h */,
840092801CCF406200F89A56 /* usocket.c */,
840092811CCF406200F89A56 /* usocket.h */,
);
name = luasocket;
path = ../../luasocket;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
0F4B04CF1800959F002EA938 /* tolua */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0F4B04DE1800959F002EA938 /* Build configuration list for PBXNativeTarget "tolua" */;
buildPhases = (
0F4B04CC1800959F002EA938 /* Sources */,
0F4B04CD1800959F002EA938 /* Frameworks */,
0F4B04CE1800959F002EA938 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = tolua;
productName = ulua;
productReference = 0F4B04D01800959F002EA938 /* tolua.bundle */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
0F4B04C81800959F002EA938 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0640;
ORGANIZATIONNAME = "xlcw games";
};
buildConfigurationList = 0F4B04CB1800959F002EA938 /* Build configuration list for PBXProject "tolua" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 0F4B04C71800959F002EA938;
productRefGroup = 0F4B04D11800959F002EA938 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
0F4B04CF1800959F002EA938 /* tolua */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
0F4B04CE1800959F002EA938 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
0F4B04CC1800959F002EA938 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
84EF23A81C4CCD3F0093A49A /* lundump.c in Sources */,
84F8B8B51C45679700AE9B8F /* struct.c in Sources */,
842A59A91C85B76100EA2815 /* fpconv.c in Sources */,
8400928F1CCF406200F89A56 /* udp.c in Sources */,
84ED5C081C4D0749006965FF /* bit.c in Sources */,
84EF23991C4CCD3F0093A49A /* lmathlib.c in Sources */,
840092871CCF406200F89A56 /* io.c in Sources */,
8400928C1CCF406200F89A56 /* serial.c in Sources */,
840092861CCF406200F89A56 /* inet.c in Sources */,
84EF23981C4CCD3F0093A49A /* llex.c in Sources */,
840092901CCF406200F89A56 /* unix.c in Sources */,
84F8B8B71C45679C00AE9B8F /* lpeg.c in Sources */,
840092831CCF406200F89A56 /* buffer.c in Sources */,
849CC46B1C9846C800D4D510 /* int64.c in Sources */,
8400928A1CCF406200F89A56 /* options.c in Sources */,
84EF23A21C4CCD3F0093A49A /* lstrlib.c in Sources */,
840092851CCF406200F89A56 /* except.c in Sources */,
84EF23AA1C4CCD3F0093A49A /* lzio.c in Sources */,
8400928D1CCF406200F89A56 /* tcp.c in Sources */,
84F8B8B11C45677A00AE9B8F /* pb.c in Sources */,
840092821CCF406200F89A56 /* auxiliar.c in Sources */,
84EF23931C4CCD3F0093A49A /* ldump.c in Sources */,
84EF239B1C4CCD3F0093A49A /* loadlib.c in Sources */,
840092911CCF406200F89A56 /* usocket.c in Sources */,
84EF23951C4CCD3F0093A49A /* lgc.c in Sources */,
842A59AA1C85B76100EA2815 /* lua_cjson.c in Sources */,
84EF23A51C4CCD3F0093A49A /* ltm.c in Sources */,
84EF239D1C4CCD3F0093A49A /* lopcodes.c in Sources */,
84F8B8B31C45678E00AE9B8F /* tolua.c in Sources */,
84EF239C1C4CCD3F0093A49A /* lobject.c in Sources */,
840092881CCF406200F89A56 /* luasocket.c in Sources */,
84EF23A11C4CCD3F0093A49A /* lstring.c in Sources */,
842A59AB1C85B76100EA2815 /* strbuf.c in Sources */,
84EF23A31C4CCD3F0093A49A /* ltable.c in Sources */,
84EF23A41C4CCD3F0093A49A /* ltablib.c in Sources */,
8445EB131D4C9D2100397F5E /* uint64.c in Sources */,
84EF239F1C4CCD3F0093A49A /* lparser.c in Sources */,
840092891CCF406200F89A56 /* mime.c in Sources */,
84EF23A91C4CCD3F0093A49A /* lvm.c in Sources */,
84EF23911C4CCD3F0093A49A /* ldebug.c in Sources */,
84EF23921C4CCD3F0093A49A /* ldo.c in Sources */,
84EF23A01C4CCD3F0093A49A /* lstate.c in Sources */,
8400928B1CCF406200F89A56 /* select.c in Sources */,
84EF239A1C4CCD3F0093A49A /* lmem.c in Sources */,
84EF23901C4CCD3F0093A49A /* ldblib.c in Sources */,
84EF23941C4CCD3F0093A49A /* lfunc.c in Sources */,
840092841CCF406200F89A56 /* compat.c in Sources */,
84EF23971C4CCD3F0093A49A /* liolib.c in Sources */,
84EF238F1C4CCD3F0093A49A /* lcode.c in Sources */,
84EF239E1C4CCD3F0093A49A /* loslib.c in Sources */,
84EF238E1C4CCD3F0093A49A /* lbaselib.c in Sources */,
84EF238C1C4CCD3F0093A49A /* lapi.c in Sources */,
84EF23961C4CCD3F0093A49A /* linit.c in Sources */,
8400928E1CCF406200F89A56 /* timeout.c in Sources */,
84EF238D1C4CCD3F0093A49A /* lauxlib.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
0F4B04D81800959F002EA938 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
0F4B04D91800959F002EA938 /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
0F4B04DC1800959F002EA938 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
0F4B04DD1800959F002EA938 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
SDKROOT = macosx;
};
name = Release;
};
0F4B04DF1800959F002EA938 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "tolua/tolua-Prefix.pch";
HEADER_SEARCH_PATHS = (
"$(inherited)",
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
"$(PROJECT_DIR)/lua",
"$(PROJECT_DIR)",
);
INFOPLIST_FILE = "tolua/tolua-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)";
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-all_load";
PRODUCT_NAME = tolua;
VALID_ARCHS = "x86_64 i386";
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
0F4B04E01800959F002EA938 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "tolua/tolua-Prefix.pch";
HEADER_SEARCH_PATHS = (
"$(inherited)",
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
"$(PROJECT_DIR)/lua",
"$(PROJECT_DIR)",
);
INFOPLIST_FILE = "tolua/tolua-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)";
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-all_load";
PRODUCT_NAME = tolua;
VALID_ARCHS = "x86_64 i386";
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
0F4B04CB1800959F002EA938 /* Build configuration list for PBXProject "tolua" */ = {
isa = XCConfigurationList;
buildConfigurations = (
0F4B04DC1800959F002EA938 /* Debug */,
0F4B04DD1800959F002EA938 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
0F4B04DE1800959F002EA938 /* Build configuration list for PBXNativeTarget "tolua" */ = {
isa = XCConfigurationList;
buildConfigurations = (
0F4B04DF1800959F002EA938 /* Debug */,
0F4B04E01800959F002EA938 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 0F4B04C81800959F002EA938 /* Project object */;
}
|