Files
node-cryptoforknote-util-mo/binding.gyp

34 lines
946 B
Plaintext
Raw Normal View History

2014-05-15 12:20:48 +01:00
{
"targets": [
{
"target_name": "cryptonote",
"sources": [
"src/main.cc",
2018-03-25 00:10:52 +01:00
"src/cryptonote_core/cryptonote_format_utils.cpp",
2018-03-25 00:56:44 +01:00
"src/crypto/tree-hash.c",
2018-03-25 00:17:22 +01:00
"src/common/base58.cpp",
2014-05-15 12:20:48 +01:00
],
2014-05-15 18:07:32 +01:00
"include_dirs": [
"src",
2014-05-31 19:15:41 +01:00
"src/contrib/epee/include",
"<!(node -e \"require('nan')\")",
2014-05-15 18:07:32 +01:00
],
"link_settings": {
"libraries": [
2014-05-16 21:54:01 +01:00
"-lboost_system",
2014-05-31 19:15:41 +01:00
"-lboost_date_time",
2014-05-15 18:07:32 +01:00
]
},
"cflags_cc!": [ "-fno-exceptions", "-fno-rtti" ],
"cflags_cc": [
2014-05-16 12:20:41 +01:00
"-std=c++0x",
2014-05-15 18:07:32 +01:00
"-fexceptions",
2014-05-31 19:15:41 +01:00
"-frtti",
],
2018-03-24 23:19:24 +01:00
"xcode_settings": {
"OTHER_CFLAGS": ["-fexceptions", "-frtti"]
}
2014-05-15 12:20:48 +01:00
}
]
}