bitcore-node-zcash/binding.gyp

35 lines
728 B
Plaintext
Raw Normal View History

2014-08-12 12:03:04 -07:00
{
'targets': [{
'target_name': 'bitcoindjs',
'include_dirs' : [
2015-07-02 11:59:14 -07:00
'/usr/include/boost',
'./libbitcoind/src/leveldb/include',
'./libbitcoind/src',
'<!(node -e "require(\'nan\')")'
2014-08-12 12:03:04 -07:00
],
'sources': [
2014-08-20 15:33:03 -07:00
'./src/bitcoindjs.cc',
],
'conditions': [
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
2015-06-08 16:08:18 -07:00
'GCC_ENABLE_CPP_RTTI': 'YES',
'MACOSX_DEPLOYMENT_TARGET': '10.9'
}
2015-07-02 11:59:14 -07:00
}
]
],
'cflags_cc': [
'-fexceptions',
2014-08-20 15:33:03 -07:00
'-frtti',
'-fpermissive',
2014-08-12 12:03:04 -07:00
],
'libraries': [
'-lboost_filesystem',
'<!(./platform/os.sh thread)',
'<!(./platform/os.sh lib)'
2014-08-12 12:03:04 -07:00
]
}]
}