1
0
Fork 0
forked from lthn/blockchain

stops using system cmake for make testnet/mainnet uses cmake 3.11.9

This commit is contained in:
snider 2025-10-11 12:45:27 +01:00
parent dcda295e1e
commit 0213635773
2 changed files with 8 additions and 2 deletions

View file

@ -72,10 +72,12 @@ CC_DOCKER_FILE?=utils/docker/images/lthn-chain/Dockerfile
all: help
testnet:
cmake --workflow testnet
$(MAKE) configure TESTNET=1
CONAN_HOME=$(CONAN_CACHE) $(CONAN_EXECUTABLE) build .
mainnet:
cmake --workflow mainnet
$(MAKE) configure TESTNET=0
CONAN_HOME=$(CONAN_CACHE) $(CONAN_EXECUTABLE) build .
release: docs build
(cd $(BUILD_FOLDER) && cpack)

View file

@ -21,6 +21,10 @@ class BlockchainConan(ConanFile):
"boost/*:without_test": True
}
tool_requires = [
"cmake/3.31.9"
]
requires = [
"zlib/1.3.1",
"boost/1.85.0",