Add a tool for profiling the creation of JoinSplits

This commit is contained in:
Jack Grigg
2016-12-17 02:39:35 +13:00
parent 611f25b604
commit d0ce704abe
2 changed files with 44 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
bin_PROGRAMS += \
zcash/GenerateParams
zcash/GenerateParams \
zcash/CreateJoinSplit
# tool for generating our public parameters
zcash_GenerateParams_SOURCES = zcash/GenerateParams.cpp
@@ -9,3 +10,13 @@ zcash_GenerateParams_LDADD = \
$(LIBBITCOIN_UTIL) \
$(LIBBITCOIN_CRYPTO) \
$(LIBZCASH_LIBS)
# tool for profiling the creation of joinsplits
zcash_CreateJoinSplit_SOURCES = zcash/CreateJoinSplit.cpp
zcash_CreateJoinSplit_LDADD = \
$(LIBBITCOIN_COMMON) \
$(LIBBITCOIN_UTIL) \
$(LIBBITCOIN_CRYPTO) \
$(LIBZCASH) \
$(BOOST_LIBS) \
$(LIBZCASH_LIBS)