1
0
Fork 0
forked from lthn/blockchain

moved boost checker to right place(now for sure)

This commit is contained in:
cryptozoidberg 2025-03-28 15:27:46 +04:00
parent 8b910b9111
commit 60471f7f46
No known key found for this signature in database
GPG key ID: 2E10CC61CAC8F36D
2 changed files with 13 additions and 3 deletions

View file

@ -30,6 +30,3 @@
#define ENABLE_RELEASE_LOGGING
#include "misc_log_ex.h"

View file

@ -0,0 +1,13 @@
// Copyright (c) 2025 Zano Project
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include <boost/version.hpp>
#include <boost/config.hpp> // for BOOST_LIB_VERSION
#if BOOST_VERSION < 107500
# error "Boost version 1.75.0 or newer is required, detected: " BOOST_LIB_VERSION
#endif