forked from MatteoMeil/node-native-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
35 lines (35 loc) · 937 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
31
32
33
34
35
{
"targets": [
{
"target_name": "unix_printer",
"sources": ["./lib/unix/methods.cpp", "./lib/unix/API.cpp"],
'cflags': ['-fexceptions'],
'cflags_cc': ['-fexceptions'],
"conditions": [
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES'
}
}],
['OS!="win"', {
'cflags':[
'<!(cups-config --cflags)'
],
'ldflags':[
'<!(cups-config --libs)'
#'-lcups -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lz -lpthread -lm -lcrypt -lz'
],
'libraries':[
'<!(cups-config --libs)'
#'-lcups -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lz -lpthread -lm -lcrypt -lz'
],
'link_settings': {
'libraries': [
'<!(cups-config --libs)'
]
}
}]
]
}
]
}