This repository has been archived on 2021-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
node-pcsclite/binding.gyp
2013-06-20 16:37:28 +02:00

20 lines
460 B
Python

{
'targets': [
{
'target_name': 'pcsclite',
'sources': [ 'src/addon.cpp', 'src/pcsclite.cpp', 'src/cardreader.cpp' ],
'include_dirs': [
'/usr/include/PCSC'
],
'link_settings': {
'libraries': [
'-lpcsclite'
],
'library_dirs': [
'/usr/lib'
]
}
}
]
}