node-multi-hashing/binding.gyp

64 lines
1.8 KiB
Plaintext
Raw Permalink Normal View History

2014-03-30 10:04:48 +02:00
{
"targets": [
{
"target_name": "multihashing",
"sources": [
"multihashing.cc",
"scryptjane.c",
"scryptn.c",
"keccak.c",
"skein.c",
"x11.c",
"quark.c",
"bcrypt.c",
"groestl.c",
"blake.c",
2014-04-19 21:28:17 +02:00
"fugue.c",
2014-04-19 21:49:49 +02:00
"qubit.c",
2014-04-19 22:46:10 +02:00
"hefty1.c",
2014-04-19 23:33:45 +02:00
"shavite3.c",
2014-05-10 21:07:49 +02:00
"cryptonight.c",
2014-05-29 03:22:57 +02:00
"x13.c",
2014-06-03 22:18:55 +02:00
"boolberry.cc",
2014-06-14 21:11:19 +02:00
"nist5.c",
2014-06-13 12:08:50 +02:00
"sha1.c",
2014-06-27 19:22:42 +02:00
"x15.c",
2014-07-07 22:51:55 +02:00
"fresh.c",
2014-04-19 22:46:10 +02:00
"sha3/sph_hefty1.c",
2014-04-19 21:28:17 +02:00
"sha3/sph_fugue.c",
2014-03-30 10:04:48 +02:00
"sha3/aes_helper.c",
"sha3/sph_blake.c",
"sha3/sph_bmw.c",
"sha3/sph_cubehash.c",
"sha3/sph_echo.c",
"sha3/sph_groestl.c",
"sha3/sph_jh.c",
"sha3/sph_keccak.c",
"sha3/sph_luffa.c",
"sha3/sph_shavite.c",
"sha3/sph_simd.c",
2014-05-10 21:07:49 +02:00
"sha3/sph_skein.c",
2014-06-27 19:22:42 +02:00
"sha3/sph_whirlpool.c",
"sha3/sph_shabal.c",
2014-05-29 03:22:57 +02:00
"sha3/hamsi.c",
2014-05-10 21:07:49 +02:00
"crypto/oaes_lib.c",
"crypto/c_keccak.c",
"crypto/c_groestl.c",
"crypto/c_blake256.c",
"crypto/c_jh.c",
"crypto/c_skein.c",
2014-05-18 16:00:56 +02:00
"crypto/hash.c",
2014-06-03 22:18:55 +02:00
"crypto/aesb.c",
2014-07-07 22:51:55 +02:00
"crypto/wild_keccak.cpp",
2014-06-03 22:18:55 +02:00
],
"include_dirs": [
"crypto",
"<!(node -e \"require('nan')\")",
2014-06-03 22:18:55 +02:00
],
"cflags_cc": [
"-std=c++0x"
],
2014-03-30 10:04:48 +02:00
}
]
}