forked from lthn/blockchain
moved boost checker to right place(now for sure)
This commit is contained in:
parent
8b910b9111
commit
60471f7f46
2 changed files with 13 additions and 3 deletions
|
|
@ -30,6 +30,3 @@
|
|||
#define ENABLE_RELEASE_LOGGING
|
||||
|
||||
#include "misc_log_ex.h"
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
13
src/common/boost_version_check.h
Normal file
13
src/common/boost_version_check.h
Normal 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
|
||||
Loading…
Add table
Reference in a new issue