forked from valpackett/exiv2node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbinding.gyp
50 lines (50 loc) · 1.04 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
48
49
50
{
'variables': {
'EXIV2_LIB': '<!(pkg-config --variable=libdir exiv2)'
},
'targets': [
{
'target_name': 'exiv2',
'sources': [
'exiv2node.cc'
],
'include_dirs' : [
'<!@(pkg-config --variable=includedir exiv2)',
"<!(node -e \"require('nan')\")"
],
'xcode_settings': {
'MACOSX_DEPLOYMENT_TARGET': '10.12',
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'OTHER_CPLUSPLUSFLAGS': [
'-stdlib=libc++',
'-fcxx-exceptions',
'-frtti',
'-fexceptions'
],
},
"cflags": [
"-Wdeprecated-declarations",
"-fexceptions",
"-frtti"
],
'cflags_cc': [
'-fexceptions',
"-frtti",
"-Wdeprecated-declarations"
],
'conditions': [[
'OS=="win"',
{
'libraries': [
'<(EXIV2_LIB)/exiv2.lib'
],
},
{
'libraries': [
'<!@(pkg-config --libs exiv2)'
]
}
]]
}
]
}