-
Notifications
You must be signed in to change notification settings - Fork 53
/
binding.gyp
executable file
·47 lines (47 loc) · 1.46 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": "png",
"sources": [
"src/common.cpp",
"src/png_encoder.cpp",
"src/png.cpp",
"src/fixed_png_stack.cpp",
"src/dynamic_png_stack.cpp",
"src/module.cpp",
"src/buffer_compat.cpp",
],
"conditions" : [
[
'OS=="linux"', {
"libraries" : [
'-lpng',
'-lz'
],
'cflags!': [ '-fno-exceptions' ],
'cflags_cc!': [ '-fno-exceptions' ]
}
],
[
'OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES'
},
"libraries" : [
'<!@(pkg-config libpng --libs)'
]
}
],
[
'OS=="win"', {
"include_dirs" : [ "gyp/include" ],
"libraries" : [
'<(module_root_dir)/gyp/lib/libpng.lib',
'<(module_root_dir)/gyp/lib/zlib.lib'
]
}
]
]
}
]
}