forked from wankdanker/node-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
46 lines (46 loc) · 956 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
36
37
38
39
40
41
42
43
44
45
46
{
'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'],
'include_dirs': [
"<!(node -e \"require('nan')\")"
],
'defines' : [
'UNICODE'
],
'conditions' : [
[ 'OS == "linux"', {
'libraries' : [
'-lodbc'
],
'cflags' : [
'-g'
]
}],
[ 'OS == "mac"', {
'libraries' : [
'-L/usr/local/lib',
'-lodbc'
]
}],
[ 'OS=="win"', {
'sources' : [
'src/strptime.c',
'src/odbc.cpp'
],
'libraries' : [
'-lodbccp32.lib'
]
}]
]
}
]
}