71 lines
1.8 KiB
Python
71 lines
1.8 KiB
Python
{
|
|
"target_defaults": {
|
|
"variables": {
|
|
"warning-flags": [
|
|
"-Wno-missing-field-initializers",
|
|
"-Wno-return-type",
|
|
"-Wno-unused-result",
|
|
"-Wno-deprecated-declarations"
|
|
]
|
|
},
|
|
"cflags_cc!": [ # turn off default flags on older nodes on linux
|
|
"-fno-exceptions",
|
|
"-fno-rtti",
|
|
"-std=gnu++0x",
|
|
"-std=gnu++1y" # this is the default on Node.js 10, but we can't use the GNU dialect
|
|
],
|
|
"cflags_cc": [
|
|
"-fexceptions",
|
|
"-frtti",
|
|
"-std=c++14",
|
|
"<@(warning-flags)"
|
|
],
|
|
"include_dirs": [
|
|
"<!(node -e \"require('nan')\")"
|
|
],
|
|
"conditions": [
|
|
["OS=='win'", {
|
|
"defines": [ "_UNICODE", "UNICODE", "WIN32=1", "_HAS_EXCEPTIONS=1", "WIN32_LEAN_AND_MEAN", "_WIN32_WINNT=0x600", "_ENABLE_EXTENDED_ALIGNED_STORAGE" ]
|
|
}],
|
|
["OS=='mac'", {
|
|
"xcode_settings": {
|
|
"CLANG_CXX_LANGUAGE_STANDARD": "c++14",
|
|
"CLANG_CXX_LIBRARY": "libc++",
|
|
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
|
|
"GCC_ENABLE_CPP_RTTI": "YES",
|
|
"MACOSX_DEPLOYMENT_TARGET": "10.8",
|
|
"OTHER_LDFLAGS": ["-framework Foundation"],
|
|
"WARNING_CFLAGS": [ "<@(warning-flags)" ]
|
|
}
|
|
}],
|
|
["OS=='linux'", {
|
|
"defines": [ "_GLIBCXX_USE_CXX11_ABI=0" ]
|
|
}]
|
|
],
|
|
# windows stuff
|
|
"configurations": {
|
|
"Debug": {
|
|
"msvs_settings": {
|
|
"VCCLCompilerTool": {
|
|
"RuntimeTypeInfo": "true",
|
|
},
|
|
}
|
|
},
|
|
"Release": {
|
|
"msvs_settings": {
|
|
"VCCLCompilerTool": {
|
|
"RuntimeTypeInfo": "true",
|
|
},
|
|
}
|
|
}
|
|
},
|
|
"msvs_settings": {
|
|
"VCCLCompilerTool": {
|
|
"ExceptionHandling": 1
|
|
}
|
|
},
|
|
"msvs_disabled_warnings": [ 4068, 4101, 4244, 4996 ],
|
|
"msbuild_toolset": "v141"
|
|
}
|
|
}
|