Build: Libconsensus: Move libconsensus-ready files to the consensus package
This commit is contained in:
parent
a3d5eec546
commit
4feadec98e
1 changed files with 8 additions and 8 deletions
|
@ -83,7 +83,6 @@ endif
|
||||||
BITCOIN_CORE_H = \
|
BITCOIN_CORE_H = \
|
||||||
addrman.h \
|
addrman.h \
|
||||||
alert.h \
|
alert.h \
|
||||||
arith_uint256.h \
|
|
||||||
base58.h \
|
base58.h \
|
||||||
bloom.h \
|
bloom.h \
|
||||||
chain.h \
|
chain.h \
|
||||||
|
@ -101,9 +100,6 @@ BITCOIN_CORE_H = \
|
||||||
compat/sanity.h \
|
compat/sanity.h \
|
||||||
compressor.h \
|
compressor.h \
|
||||||
consensus/consensus.h \
|
consensus/consensus.h \
|
||||||
consensus/merkle.h \
|
|
||||||
consensus/params.h \
|
|
||||||
consensus/validation.h \
|
|
||||||
core_io.h \
|
core_io.h \
|
||||||
core_memusage.h \
|
core_memusage.h \
|
||||||
httprpc.h \
|
httprpc.h \
|
||||||
|
@ -124,7 +120,6 @@ BITCOIN_CORE_H = \
|
||||||
policy/fees.h \
|
policy/fees.h \
|
||||||
policy/policy.h \
|
policy/policy.h \
|
||||||
pow.h \
|
pow.h \
|
||||||
primitives/block.h \
|
|
||||||
protocol.h \
|
protocol.h \
|
||||||
random.h \
|
random.h \
|
||||||
reverselock.h \
|
reverselock.h \
|
||||||
|
@ -254,9 +249,17 @@ libbitcoin_consensus_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
||||||
libbitcoin_consensus_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
libbitcoin_consensus_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||||
libbitcoin_consensus_a_SOURCES = \
|
libbitcoin_consensus_a_SOURCES = \
|
||||||
amount.h \
|
amount.h \
|
||||||
|
arith_uint256.cpp \
|
||||||
|
arith_uint256.h \
|
||||||
|
consensus/merkle.cpp \
|
||||||
|
consensus/merkle.h \
|
||||||
|
consensus/params.h \
|
||||||
|
consensus/validation.h \
|
||||||
hash.cpp \
|
hash.cpp \
|
||||||
hash.h \
|
hash.h \
|
||||||
prevector.h \
|
prevector.h \
|
||||||
|
primitives/block.cpp \
|
||||||
|
primitives/block.h \
|
||||||
primitives/transaction.cpp \
|
primitives/transaction.cpp \
|
||||||
primitives/transaction.h \
|
primitives/transaction.h \
|
||||||
pubkey.cpp \
|
pubkey.cpp \
|
||||||
|
@ -281,18 +284,15 @@ libbitcoin_common_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
||||||
libbitcoin_common_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
libbitcoin_common_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||||
libbitcoin_common_a_SOURCES = \
|
libbitcoin_common_a_SOURCES = \
|
||||||
amount.cpp \
|
amount.cpp \
|
||||||
arith_uint256.cpp \
|
|
||||||
base58.cpp \
|
base58.cpp \
|
||||||
chainparams.cpp \
|
chainparams.cpp \
|
||||||
coins.cpp \
|
coins.cpp \
|
||||||
compressor.cpp \
|
compressor.cpp \
|
||||||
consensus/merkle.cpp \
|
|
||||||
core_read.cpp \
|
core_read.cpp \
|
||||||
core_write.cpp \
|
core_write.cpp \
|
||||||
key.cpp \
|
key.cpp \
|
||||||
keystore.cpp \
|
keystore.cpp \
|
||||||
netbase.cpp \
|
netbase.cpp \
|
||||||
primitives/block.cpp \
|
|
||||||
protocol.cpp \
|
protocol.cpp \
|
||||||
scheduler.cpp \
|
scheduler.cpp \
|
||||||
script/sign.cpp \
|
script/sign.cpp \
|
||||||
|
|
Loading…
Reference in a new issue