We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0129877 commit 6988889Copy full SHA for 6988889
binding.gyp
@@ -1,14 +1,21 @@
1
{
2
- 'variables':
3
- {
4
- 'shared%': '<!(node ./util/has_lib.js)'
5
- },
6
'conditions':
7
[
8
- ['shared=="true" or OS=="win"', {
+ ['OS=="win"', {
9
'includes': ['shared.gypi']
10
}, {
11
- 'includes': ['static.gypi']
+ 'variables':
+ {
+ 'shared%': '<!(node ./util/has_lib.js)'
+ },
+ 'conditions':
12
+ [
13
+ ['shared=="true"', {
14
+ 'includes': ['shared.gypi']
15
+ }, {
16
+ 'includes': ['static.gypi']
17
+ }]
18
+ ]
19
}]
20
]
21
}
0 commit comments