File: binding.gyp

package info (click to toggle)
node-nodedbi 1.0.12-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 232 kB
  • sloc: cpp: 653; makefile: 12; sh: 2
file content (17 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "targets": [
    {
      "target_name": "nodedbi",
      "sources": [ "src/connection.cpp", "src/query.cpp" ],
      'cflags': [
        '<!@(pkg-config --cflags dbi)'
      ],
      'ldflags': [
        '<!@(pkg-config --libs-only-L --libs-only-other dbi)'
      ],
      'libraries': [
        '<!@(pkg-config --libs-only-l dbi)'
      ]
    }
  ]
}