forked from thiagoelg/node-printer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
binding.gyp
91 lines (91 loc) · 2.44 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
{
"variables": {
"module_name%": "node_printer",
"module_path%": "lib",
"openssl_fips": ""
},
'targets': [
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "<(module_name)" ],
"copies": [
{
"files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
"destination": "<(module_path)"
}
]
},
{
'target_name': 'node_printer',
'sources': [
# is like "ls -1 src/*.cc", but gyp does not support direct patterns on
# sources
'<!@(["python", "tools/getSourceFiles.py", "src", "cc"])'
],
'include_dirs' : [
"<!(node -e \"require('nan')\")"
],
'cflags_cc+': [
"-Wno-deprecated-declarations"
],
'conditions': [
# common exclusions
['OS!="linux"', {'sources/': [['exclude', '_linux\\.cc$']]}],
['OS!="mac"', {'sources/': [['exclude', '_mac\\.cc|mm?$']]}],
['OS!="win"', {
'sources/': [['exclude', '_win\\.cc$']]}, {
# else if OS==win, exclude also posix files
'sources/': [['exclude', '_posix\\.cc$']]
}],
# specific settings
['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)'
]
}
}],
['OS=="win"', {
"defines": [
"NOMINMAX" # allow std::min/max to work
],
"cflags": [
"-O2"
],
"msvs_settings": {
"VCCLCompilerTool": {
"AdditionalOptions": [ "-std:c++20", ],
},
},
}],
['OS=="mac"', {
'cflags':[
"-stdlib=libc++"
],
'xcode_settings': {
"OTHER_CPLUSPLUSFLAGS":["-std=c++20", "-stdlib=libc++"],
"OTHER_LDFLAGS": ["-stdlib=libc++"],
"MACOSX_DEPLOYMENT_TARGET": "14.0",
},
}],
['OS=="linux"', {
'cflags_cc':[
"-std=c++20"
]
}],
]
}
]
}