We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0129877 commit 304b5a9Copy full SHA for 304b5a9
1 file changed
binding.gyp
@@ -1,11 +1,12 @@
1
{
2
- 'variables':
3
- {
4
- 'shared%': '<!(node ./util/has_lib.js)'
5
- },
6
'conditions':
7
[
8
- ['shared=="true" or OS=="win"', {
+ ['OS=="win"', {
+ 'variables': {'shared%': 'true'}
+ }, {
+ 'variables': {'shared%': '<!(node ./util/has_lib.js)'}
+ }],
9
+ ['shared=="true"', {
10
'includes': ['shared.gypi']
11
}, {
12
'includes': ['static.gypi']
0 commit comments