Skip to content

Commit

Permalink
Merge pull request #5 from vikdoro/devs
Browse files Browse the repository at this point in the history
Set OSX version conditions
  • Loading branch information
Paul Varache authored Feb 5, 2018
2 parents fc99a51 + 681d06b commit b5a5327
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,16 @@
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
"GCC_ENABLE_CPP_RTTI": "YES",
"OTHER_CFLAGS": ["-std=c++11", "-stdlib=libc++"]
},
}
],
['OS=="mac" and <!(node -e "console.log(parseInt(os.release()) > 15 ? 1 : 0)")',
{
"xcode_settings": {
"OTHER_CFLAGS": ["-std=c++11", "-stdlib=libc++"]
}
}
],
['OS=="win"',
{
"libraries": [
Expand Down

0 comments on commit b5a5327

Please sign in to comment.