summarylogtreecommitdiffstats
path: root/binding.gyp
blob: 13116f16c302e1f80bb536e12c25f54dc77eb30f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
  'variables': {
    'zmq_external%': 'false',
  },
  'targets': [
    {
      'target_name': 'libzmq',
      'type': 'none',
      'actions': [{
        'action_name': 'prepare-build',
        'inputs': [],
        'conditions': [
          ['OS=="win"', {
            'outputs': ['windows/lib/libzmq.lib'],
          }, {
            'outputs': ['zmq/BUILD_SUCCESS'],
          }],
        ],
        'action': ['node', '<(PRODUCT_DIR)/../../scripts/prepare.js'],
      }],
    },
    {
      'target_name': 'zmq',
      'dependencies': ['libzmq'],
      'sources': ['binding.cc'],
      'include_dirs' : ["<!(node -e \"require('nan')\")"],
      'cflags!': ['-fno-exceptions'],
      'cflags_cc!': ['-fno-exceptions'],
      'link_settings': { 'libraries': ['-lunwind'] },
      'conditions': [
        ["zmq_external == 'true'", {
          'link_settings': {
            'libraries': ['-lzmq'],
          },
        }, {
          'conditions': [
            ['OS=="win"', {
              'defines': ['ZMQ_STATIC'],
              'include_dirs': ['windows/include'],
              'libraries': [
                '<(PRODUCT_DIR)/../../windows/lib/libzmq',
                'ws2_32.lib',
                'iphlpapi',
              ],
            }],
            ['OS=="mac" or OS=="solaris"', {
              'xcode_settings': {
                'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
                'MACOSX_DEPLOYMENT_TARGET': '10.15',
              },
              'libraries': ['<(PRODUCT_DIR)/../../zmq/lib/libzmq.a'],
              'include_dirs': ['<(PRODUCT_DIR)/../../zmq/include'],
            }],
            ['OS=="openbsd" or OS=="freebsd"', {
            }],
            ['OS=="linux"', {
              'libraries': ['<(PRODUCT_DIR)/../../zmq/lib/libzmq.a'],
              'include_dirs': ['<(PRODUCT_DIR)/../../zmq/include'],
            }],
          ],
        }],
      ],
    }
  ]
}