summaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/node_template/binding.gyp.in
blob: 209774ae07adbbac658912ef5f15a89733ff9752 (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
{
  "targets": [
    {
      "target_name": "$testcase",
      "sources":[ "../$testcase_wrap.cxx" ],
      "include_dirs": ["../.."],
      'defines': [
        'BUILDING_NODE_EXTENSION=1',
      ],
      'conditions': [
        ['OS=="mac"',
          {
            'xcode_settings': {
              'GCC_ENABLE_CPP_RTTI': 'YES',
              'GCC_ENABLE_CPP_EXCEPTIONS' : 'YES'
            }
          }
        ],
        ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"',
          {
            'cflags': [ "-Wno-unused-variable", "-Wno-unused-but-set-variable", "-Wno-unused-but-set-parameter", $cflags],
            'cflags_cc': [ "-Wno-unused-variable", "-Wno-unused-but-set-variable", "-Wno-unused-but-set-parameter", $cflags],
            'cflags!': [ '-fno-exceptions' ],
            'cflags_cc!': [ '-fno-exceptions', '-fno-rtti' ]
          }
        ]
      ],
    }
  ],
}