source: trip-planner-front/node_modules/node-addon-api/common.gypi

Last change on this file was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago

primeNG components

  • Property mode set to 100644
File size: 762 bytes
Line 
1{
2 'variables': {
3 'NAPI_VERSION%': "<!(node -p \"process.versions.napi\")",
4 'disable_deprecated': "<!(node -p \"process.env['npm_config_disable_deprecated']\")"
5 },
6 'conditions': [
7 ['NAPI_VERSION!=""', { 'defines': ['NAPI_VERSION=<@(NAPI_VERSION)'] } ],
8 ['disable_deprecated=="true"', {
9 'defines': ['NODE_ADDON_API_DISABLE_DEPRECATED']
10 }],
11 ['OS=="mac"', {
12 'cflags+': ['-fvisibility=hidden'],
13 'xcode_settings': {
14 'OTHER_CFLAGS': ['-fvisibility=hidden']
15 }
16 }]
17 ],
18 'include_dirs': ["<!(node -p \"require('../').include_dir\")"],
19 'cflags': [ '-Werror', '-Wall', '-Wextra', '-Wpedantic', '-Wunused-parameter' ],
20 'cflags_cc': [ '-Werror', '-Wall', '-Wextra', '-Wpedantic', '-Wunused-parameter' ]
21}
Note: See TracBrowser for help on using the repository browser.