-
Notifications
You must be signed in to change notification settings - Fork 0
/
flavor.gyp
84 lines (78 loc) · 1.53 KB
/
flavor.gyp
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
{
'includes': ['config.gypi']
, 'targets': [
{
'target_name': 'flavor'
, 'type': 'executable'
, 'conditions': [
['OS == "win"', {
'dependencies': [
]
}
,
{
}
]
]
, 'dependencies': [
]
, 'defines': [
'YY_NO_UNISTD_H'
]
, 'include_dirs': [
'./include'
]
, 'sources': [
'carray.h'
, 'cbac.h'
, 'cclass.h'
, 'cdef.h'
, 'cexpr.h'
, 'cgetput.h'
, 'check.h'
, 'cid.h'
, 'cmap.h'
, 'compile.h'
, 'cout.h'
, 'cpragma.h'
, 'ctrace.h'
, 'cvar.h'
, 'cverbatim.h'
, 'cxml.h'
, 'error.h'
, 'eval.h'
, 'globals.h'
, 'ptree.h'
, 'symbol.h'
, 'util.h'
, 'y.tab.h'
, 'include/flavor.h'
, 'include/flavori.h'
, 'include/port.h'
, 'carray.c'
, 'cbac.c'
, 'cclass.c'
, 'cexpr.c'
, 'cgetput.c'
, 'check.c'
, 'cid.c'
, 'cmap.c'
, 'compile.c'
, 'cout.c'
, 'cpragma.c'
, 'ctrace.c'
, 'cvar.c'
, 'cverbatim.c'
, 'cxml.c'
, 'error.c'
, 'eval.c'
, 'lex.yy.c'
, 'main.c'
, 'ptree.c'
, 'symbol.c'
, 'util.c'
, 'y.tab.c'
]
}
]
}