-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
42 lines (42 loc) · 1.08 KB
/
binding.gyp
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
31
32
33
34
35
36
37
38
39
40
41
42
{
"targets": [
{
"target_name": "hello",
"sources": [ "src/export/hello.cc" ],
"defines": [
'DEBUG="<!(echo $DEBUG)"'
]
},
{
"include_dirs": [
"src/headers"
],
"target_name": "math",
"sources": [
"src/export/math.cc",
"src/deps/math_deps.cxx",
"src/headers/math_deps.h",
"src/headers/timings.hpp"
],
"defines": [
'DEBUG="<!(echo $DEBUG)"'
]
},
{
"include_dirs": [
"src/headers"
],
"target_name": "arrays",
"sources": [
"src/export/arrays.cc",
"src/deps/array_deps.cxx",
"src/proto_objects/ArrayUtil.cpp",
"src/headers/arrays.h",
"src/headers/arrayutil.hpp"
],
"defines": [
'DEBUG="<!(echo $DEBUG)"'
]
}
]
}