Files
nginx-unit/src/nodejs/unit-http/binding_pub.gyp
Max Romanov aca42de18a Adding syntax sugar.
With exceptions and overloads.
2019-04-01 16:40:33 +03:00

17 lines
409 B
Python

{
'targets': [{
'target_name': "unit-http",
'cflags!': [ '-fno-exceptions' ],
'cflags_cc!': [ '-fno-exceptions' ],
'conditions': [
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES'
}
}]
],
'sources': ["unit.cpp", "addon.cpp"],
'libraries': ["-lunit"]
}]
}