-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbinding.gyp
47 lines (47 loc) · 1.23 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
43
44
45
46
47
{
"targets": [
{
"target_name": "xmempool",
"type": "static_library",
"sources": [
"./deps/byakuren/third-party/xmempool/xmempool.c"
],
"cflags": [
"-std=c99"
]
},
{
"target_name": "byakuren",
"type": "static_library",
"dependencies": [
"xmempool"
],
"sources": [
"./deps/byakuren/byakuren.c",
"./deps/byakuren/common.c",
"./deps/byakuren/const/palette.c",
"./deps/byakuren/lib/mindiff.c",
"./deps/byakuren/lib/mix.c",
"./deps/byakuren/lib/octree.c"
],
"cflags": [
"-std=c99"
]
},
{
"target_name": "thmclrx",
"dependencies": [
"byakuren"
],
"sources": [
"./src/thmclrx.cc",
"./src/common.cc"
],
"include_dirs": [
"<!(node -e \"require('nan')\")",
"deps",
"deps/byakuren/third-party"
]
}
]
}