-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbinding.gyp
31 lines (30 loc) · 834 Bytes
/
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
{
"targets" : [
{
"target_name" : "node-libpng",
"dependencies" : [
"./deps/libpng.gyp:libpng"
],
"cflags" : [
"-Wall",
"-Wno-unused-parameter",
"-Wno-missing-field-initializers",
"-Wextra"
],
"include_dirs": [
"<!(node -e \"require('nan')\")",
"./deps/libpng",
"./deps/zlib"
],
"sources" : [
"./native/module.cpp",
"./native/encode.cpp",
"./native/is-png.cpp",
"./native/png-image.cpp",
"./native/resize.cpp",
"./native/copy.cpp",
"./native/fill.cpp",
]
}
]
}