diff options
| author | Cory Fields <[email protected]> | 2014-06-09 15:17:27 -0400 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-21 19:47:43 +0200 |
| commit | 4791b99e2dea0593775a8c75f62c8406d340191e (patch) | |
| tree | 4f6c304987cd53b1dc7c842f8bd03543665b004b /src/Makefile.test.include | |
| parent | crypto: explicitly check for byte read/write functions (diff) | |
| download | discoin-4791b99e2dea0593775a8c75f62c8406d340191e.tar.xz discoin-4791b99e2dea0593775a8c75f62c8406d340191e.zip | |
crypto: create a separate lib for crypto functions
This lib has no dependencies on other bitcoin functionality. Attempting to
use bitcoin headers will result in a failure to compile.
Diffstat (limited to 'src/Makefile.test.include')
| -rw-r--r-- | src/Makefile.test.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 02fb3ba5f..64f997f4b 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -63,7 +63,7 @@ endif test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES) test_test_bitcoin_CPPFLAGS = $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS) -test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) $(LIBMEMENV) \ +test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_CRYPTO) $(LIBLEVELDB) $(LIBMEMENV) \ $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) if ENABLE_WALLET test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET) |