-
Notifications
You must be signed in to change notification settings - Fork 132
/
binding.gyp
91 lines (91 loc) · 2.66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
'conditions': [
['OS=="win"', {
'variables': {
'MAGICK_ROOT%': '<!(python get_regvalue.py)',
# download the dll binary and check off for libraries and includes
'OSX_VER%': "0",
}
}],
['OS=="mac"', {
'variables': {
# matches 10.9.X , 10.10 and outputs 10.9, 10.10, 10.11, 10.12, 10.13
'OSX_VER%': "<!(sw_vers | grep 'ProductVersion:' | grep -o '10.[0-9]*')",
}
}, {
'variables': {
'OSX_VER%': "0",
}
}]
],
"targets": [
{
"target_name": "imagemagick",
"sources": [ "src/imagemagick.cc" ],
'cflags!': [ '-fno-exceptions' ],
'cflags_cc!': [ '-fno-exceptions' ],
"include_dirs" : [
"<!(node -e \"require('nan')\")"
],
"conditions": [
['OS=="win"', {
"libraries": [
'-l<(MAGICK_ROOT)/lib/CORE_RL_magick_.lib',
'-l<(MAGICK_ROOT)/lib/CORE_RL_Magick++_.lib',
'-l<(MAGICK_ROOT)/lib/CORE_RL_wand_.lib',
],
'include_dirs': [
'<(MAGICK_ROOT)/include',
]
}],
['OS=="win" and target_arch!="x64"', {
'defines': [
'_SSIZE_T_',
]
}],
['OSX_VER == "10.9" or OSX_VER == "10.10" or OSX_VER == "10.11" or OSX_VER == "10.12" or OSX_VER == "10.13"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'OTHER_CFLAGS': [
'<!@(pkg-config --cflags ImageMagick++)'
],
'OTHER_CPLUSPLUSFLAGS' : [
'<!@(pkg-config --cflags ImageMagick++)',
'-std=c++11',
'-stdlib=libc++',
],
'OTHER_LDFLAGS': ['-stdlib=libc++'],
'MACOSX_DEPLOYMENT_TARGET': '10.7', # -mmacosx-version-min=10.7
},
"libraries": [
'<!@(pkg-config --libs ImageMagick++)',
],
'cflags': [
'<!@(pkg-config --cflags ImageMagick++)'
],
}],
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'OTHER_CFLAGS': [
'<!@(pkg-config --cflags ImageMagick++)'
]
},
"libraries": [
'<!@(pkg-config --libs ImageMagick++)',
],
'cflags': [
'<!@(pkg-config --cflags ImageMagick++)'
],
}],
['OS=="linux" or OS=="solaris" or OS=="freebsd"', { # not windows not mac
"libraries": [
'<!@(pkg-config --libs ImageMagick++)',
],
'cflags': [
'<!@(pkg-config --cflags ImageMagick++)'
],
}]
]
}]
}