aboutsummaryrefslogtreecommitdiff
path: root/test/addons/dlopen-ping-pong/binding.gyp
blob: 8569b011fac8e514950200a6d0586c2d661255ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  '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',
      'sources': [ 'binding.cc' ],
      'includes': ['../common.gypi'],
    }
  ]
}