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

40 lines
1.5 KiB
Plaintext
Raw Normal View History

2014-05-15 12:20:48 +01:00
{
"targets": [
{
2018-03-25 13:46:56 +02:00
"target_name": "cryptoforknote",
2014-05-15 12:20:48 +01:00
"sources": [
"src/main.cc",
2025-09-04 13:51:46 +01:00
"src/cryptonote_basic/cryptonote_format_utils.cpp",
2018-03-25 00:56:44 +01:00
"src/crypto/tree-hash.c",
2018-03-25 16:59:17 +02:00
"src/crypto/crypto.cpp",
"src/crypto/crypto-ops.c",
"src/crypto/crypto-ops-data.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",
2020-05-21 18:07:22 +00:00
"/usr/local/opt/boost/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": [
2020-07-15 11:15:40 -07:00
"-fno-exceptions -std=gnu11 -march=native -fPIC -DNDEBUG -Ofast -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2"
2018-03-25 03:04:23 +02:00
],
2014-05-15 18:07:32 +01:00
"cflags_cc": [
2024-05-03 19:39:19 +03:00
"-fexceptions -frtti -std=c++17 -march=native -fPIC -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
}
]
}