forked from nodegui/nodegui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
26 lines (26 loc) · 709 Bytes
/
binding.gyp
File metadata and controls
26 lines (26 loc) · 709 Bytes
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
{
"includes": [],
"targets": [
{
"target_name": "qtnode",
'include_dirs': ['.', './deps/'],
"includes": [
"./config/application.gypi",
"./config/moc.gypi",
"./config/common.gypi",
"./config/qt.gypi",
"./config/deps.gypi",
],
'dependencies': [
# './config/deps.gypi:nodeguidep',
],
'conditions':[
['OS=="mac"', {
'xcode_settings': {
'OTHER_LDFLAGS': ['-Wl,-rpath,@loader_path'],
},
}]
]
},
]
}