mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
588 B
24 lines
588 B
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'ping',
|
|
'product_extension': 'so',
|
|
'type': 'shared_library',
|
|
'sources': [ 'ping.c' ],
|
|
'conditions': [
|
|
['OS=="mac"', {
|
|
'xcode_settings': {
|
|
'OTHER_LDFLAGS': [ '-Wl,-undefined', '-Wl,dynamic_lookup' ]
|
|
}}],
|
|
# Enable the shared object to be linked by runtime linker
|
|
['OS=="aix"', {
|
|
'ldflags': [ '-Wl,-G' ]
|
|
}]],
|
|
},
|
|
{
|
|
'target_name': 'binding',
|
|
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
|
|
'sources': [ 'binding.cc' ],
|
|
}
|
|
]
|
|
}
|
|
|