Skip to content

Commit

Permalink
By-pass shell checking tool on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
piranna committed Oct 17, 2020
1 parent 0129877 commit 6988889
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions binding.gyp
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
{
'variables':
{
'shared%': '<!(node ./util/has_lib.js)'
},
'conditions':
[
['shared=="true" or OS=="win"', {
['OS=="win"', {
'includes': ['shared.gypi']
}, {
'includes': ['static.gypi']
'variables':
{
'shared%': '<!(node ./util/has_lib.js)'
},
'conditions':
[
['shared=="true"', {
'includes': ['shared.gypi']
}, {
'includes': ['static.gypi']
}]
]
}]
]
}

0 comments on commit 6988889

Please sign in to comment.