-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathlibexpat.gyp
92 lines (89 loc) · 2.01 KB
/
libexpat.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
84
85
86
87
88
89
90
91
92
# This file is used with the GYP meta build system.
# http://code.google.com/p/gyp
# To build try this:
# svn co http://gyp.googlecode.com/svn/trunk gyp
# ./gyp/gyp -f make --depth=`pwd` libexpat.gyp
# make
# ./out/Debug/test
{
'target_defaults': {
'default_configuration': 'Debug',
'configurations': {
# TODO: hoist these out and put them somewhere common, because
# RuntimeLibrary MUST MATCH across the entire project
'Debug': {
'defines': [ 'DEBUG', '_DEBUG' ],
'msvs_settings': {
'VCCLCompilerTool': {
'RuntimeLibrary': 1, # static debug
},
},
},
'Release': {
'defines': [ 'NDEBUG' ],
'msvs_settings': {
'VCCLCompilerTool': {
'RuntimeLibrary': 0, # static release
},
},
}
},
'msvs_settings': {
'VCCLCompilerTool': {
},
'VCLibrarianTool': {
},
'VCLinkerTool': {
'GenerateDebugInformation': 'true',
},
},
},
'targets': [
{
'variables': { 'target_arch%': 'ia32' }, # default for node v0.6.x
'target_name': 'expat',
'product_prefix': 'lib',
'type': 'static_library',
'sources': [
'lib/xmlparse.c',
'lib/xmltok.c',
'lib/xmlrole.c',
],
'defines': [
'PIC',
'HAVE_EXPAT_CONFIG_H'
],
'cflags': [
'-Wno-missing-field-initializers'
],
'xcode_settings': {
'OTHER_CFLAGS': [
'-Wno-missing-field-initializers'
]
},
'include_dirs': [
'.',
'lib',
],
'direct_dependent_settings': {
'include_dirs': [
'.',
'lib',
],
'conditions': [
['OS=="win"', {
'defines': [
'XML_STATIC'
]
}]
],
},
},
{
'target_name': 'version',
'type': 'executable',
'dependencies': [ 'expat' ],
'sources': [ 'version.c' ]
},
]
}