Change from pnpm to npm, add ./link.sh shortcut for npm style package linking
[node_zettair.git] / binding.gyp
1 {
2   "targets": [
3     {
4       "target_name": "zettair",
5       "cflags!": ["-fno-exceptions"],
6       "cflags_cc!": ["-fno-exceptions"],
7       "sources": ["zettair.cpp"],
8       "defines": ["NAPI_DISABLE_CPP_EXCEPTIONS"],
9       "include_dirs": [
10         "<!@(node -p \"require('node-addon-api').include\")",
11         "<!@(echo \"$HOME/include\")"
12       ],
13       "libraries": [
14         "<!@(echo \"-L$HOME/lib\")",
15         "-lzet"
16       ]
17     }
18   ]
19 }