Skip to content

Commit

Permalink
build: adapt to itcoin-core changes (v23.2 -> v24.1)
Browse files Browse the repository at this point in the history
During the transition itcoin-core v23.2 -> v24.1 the location of some static
libraries changed. This commit adapts the cmake scripts. Because of this, the
itcoin-fbft version is incremented from 0.1.0 to 0.2.0.
  • Loading branch information
muxator authored and muxator committed Jul 3, 2023
1 parent 403aad7 commit 4d9aa2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project(itcoin-fbft
HOMEPAGE_URL https://github.com/bancaditalia/itcoin-fbft.git
DESCRIPTION "A prototype FBFT implementation for itcoin"
)
set(PROJECT_VERSION "0.1.0")
set(PROJECT_VERSION "0.2.0")
set(${PROJECT_NAME}_VERSION ${PROJECT_VERSION})

set_property(GLOBAL PROPERTY USE_FOLDERS ON)
Expand Down
8 changes: 4 additions & 4 deletions thirdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ set(ITCOIN_CORE_LIBRARIES
${ITCOIN_CORE_SRC_DIR}/src/libbitcoin_common.a
${ITCOIN_CORE_SRC_DIR}/src/libbitcoin_consensus.a
${ITCOIN_CORE_SRC_DIR}/src/libbitcoin_util.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/libbitcoin_crypto_base.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/libbitcoin_crypto_avx2.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/libbitcoin_crypto_x86_shani.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/libbitcoin_crypto_sse41.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/.libs/libbitcoin_crypto_base.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/.libs/libbitcoin_crypto_avx2.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/.libs/libbitcoin_crypto_x86_shani.a
${ITCOIN_CORE_SRC_DIR}/src/crypto/.libs/libbitcoin_crypto_sse41.a
${ITCOIN_CORE_SRC_DIR}/src/.libs/libunivalue.a
${ITCOIN_CORE_SRC_DIR}/src/secp256k1/.libs/libsecp256k1.a
)
Expand Down

0 comments on commit 4d9aa2c

Please sign in to comment.