forked from w1nk/node-odbc
-
Notifications
You must be signed in to change notification settings - Fork 80
/
binding.gyp
61 lines (61 loc) · 1.36 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
{
'targets' : [
{
'target_name' : 'odbc_bindings',
'sources' : [
'src/odbc.cpp',
'src/odbc_connection.cpp',
'src/odbc_statement.cpp',
'src/odbc_result.cpp',
'src/dynodbc.cpp'
],
'cflags' : ['-Wall', '-Wextra', '-Wno-unused-parameter', '-Wno-cast-function-type'],
'include_dirs': [
"<!(node -e \"require('nan')\")"
],
'defines' : [
'UNICODE'
],
'conditions' : [
[ 'OS == "linux"', {
'libraries' : [
'-lodbc'
],
'cflags' : [
'-g'
]
}],
[ 'OS == "mac"', {
'include_dirs': [
'/usr/local/include'
],
'libraries' : [
'-L/usr/local/lib',
'-lodbc'
]
}],
[ 'OS=="win"', {
'sources' : [
'src/strptime.c',
'src/odbc.cpp'
],
'libraries' : [
'-lodbccp32.lib'
]
}],
[ 'OS=="aix"', {
'variables': {
'os_name': '<!(uname -s)',
},
'conditions': [
[ '"<(os_name)"=="OS400"', {
'ldflags': [
'-Wl,-brtl,-bnoquiet,-blibpath:/QOpenSys/pkgs/lib,-lodbc'
]
}]
]
}]
]
}
]
}