mirror of https://github.com/nodejs/node.git
24 lines
532 B
Python
24 lines
532 B
Python
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'binding',
|
|
'includes': ['../common.gypi'],
|
|
'conditions': [
|
|
['node_use_openssl=="true"', {
|
|
'sources': ['binding.cc'],
|
|
'include_dirs': ['../../../deps/openssl/openssl/include'],
|
|
}],
|
|
['OS=="mac"', {
|
|
'xcode_settings': {
|
|
'OTHER_CFLAGS+': [
|
|
'-Wno-deprecated-declarations',
|
|
],
|
|
},
|
|
}, {
|
|
'cflags': ['-Wno-deprecated-declarations'],
|
|
}],
|
|
],
|
|
},
|
|
]
|
|
}
|