winutils/binding.gyp
2017-09-25 02:19:01 +03:00

23 lines
363 B
Python

{
"targets": [
{
"target_name": "winutils",
"sources": [ "index.cc" ],
'conditions': [
[ 'OS=="win"', {
'defines': [
'UNICODE=1',
'_UNICODE=1',
'_SQLNCLI_ODBC_',
],
'libraries': [
'odbc32.lib'
],
}
]
]
}
]
}