-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
26 lines (26 loc) · 855 Bytes
/
Copy pathbinding.gyp
File metadata and controls
26 lines (26 loc) · 855 Bytes
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
{
"targets": [{
"target_name": "nscopeapi",
"cflags!": [ "-fno-exceptions" ],
"cflags_cc!": [ "-fno-exceptions" ],
"sources": [
"src/main.cpp",
"src/nScopeAPI.cpp",
"src/nScopeAPI-analogInputs.cpp",
"src/nScopeAPI-analogOutputs.cpp",
"src/nScopeAPI-sampleTiming.cpp",
"src/nScopeAPI-trigger.cpp",
"src/nScopeAPI-pulseGenerators.cpp",
"src/nScopeAPI-requests.cpp"
],
'include_dirs': [
"<!@(node -p \"require('node-addon-api').include\")",
"nScopeAPI/include"
],
'libraries': [ "-LnScopeAPI/lib, -lnscopeapi"],
'dependencies': [
"<!(node -p \"require('node-addon-api').gyp\")"
],
'defines': [ 'NAPI_DISABLE_CPP_EXCEPTIONS' ]
}]
}