bitcore-node-zcash/binding.gyp

37 lines
811 B
Plaintext
Raw Normal View History

2014-08-12 12:03:04 -07:00
{
'targets': [{
'target_name': 'bitcoindjs',
'include_dirs' : [
'<!(node -e "require(\'nan\')")',
'<!(echo "$HOME")/bitcoin/src',
'<!(echo "$HOME")/bitcoin/src/leveldb/include',
2014-08-20 15:32:15 -07:00
'/usr/include',
2014-08-20 15:33:03 -07:00
'/usr/include/boost',
# './deps',
2014-08-12 12:03:04 -07:00
],
'sources': [
2014-08-20 15:33:03 -07:00
'./src/bitcoindjs.cc',
],
'defines': [
2014-08-20 15:33:03 -07:00
'HAVE_WORKING_BOOST_SLEEP',
#'HAVE_WORKING_BOOST_SLEEP_FOR',
],
'cflags_cc': [
'-fexceptions',
2014-08-20 15:33:03 -07:00
'-frtti',
2014-08-12 12:03:04 -07:00
],
'libraries': [
2014-08-20 15:32:15 -07:00
# standard libs:
'-L/usr/lib',
'-L/usr/local/lib',
# boost:
'-lboost_system',
2014-08-20 15:33:03 -07:00
# leveldb:
2014-08-20 15:32:15 -07:00
'-L<!(echo "$HOME")/bitcoin/src/leveldb/libleveldb.a',
# bitcoind:
# '-L<!(echo "$HOME")/bitcoin/src/bitcoind',
'-L/usr/bin/bitcoind',
2014-08-12 12:03:04 -07:00
]
}]
}