Files
node-cryptoforknote-util-sa…/binding.gyp

36 lines
1.3 KiB
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 01:55:39 +01:00
"src/crypto/hash.c",
"src/crypto/keccak.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
]
},
2018-03-25 03:04:23 +02:00
"cflags_c": [
"-std=gnu11 -march=native -fPIC -m64 -DNDEBUG -Ofast -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2"
],
2014-05-15 18:07:32 +01:00
"cflags_cc": [
2018-03-25 03:04:23 +02:00
"-std=gnu++11 -march=native -fPIC -m64 -DNDEBUG -Ofast -s -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2"
2014-05-31 19:15:41 +01:00
],
2018-03-24 23:19:24 +01:00
"xcode_settings": {
2018-03-25 03:04:23 +02:00
"OTHER_CFLAGS": [ "-fexceptions -frtti" ]
2018-03-24 23:19:24 +01:00
}
2014-05-15 12:20:48 +01:00
}
]
}