forked from lthn/blockchain
MSVC 2019 configuration + Boost 1.76 support
This commit is contained in:
parent
ca10d2de17
commit
9a0382f1a7
5 changed files with 17 additions and 1 deletions
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <boost/mpl/vector.hpp>
|
||||
#include <deque>
|
||||
|
||||
namespace epee
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <boost/mpl/contains.hpp>
|
||||
#include "misc_language.h"
|
||||
#include "portable_storage_base.h"
|
||||
#include "portable_storage_to_bin.h"
|
||||
|
|
|
|||
|
|
@ -66,7 +66,6 @@ POP_VS_WARNINGS
|
|||
#include <boost/serialization/variant.hpp>
|
||||
#include <boost/serialization/vector.hpp>
|
||||
#include <boost/serialization/version.hpp>
|
||||
#include <boost/spirit/home/support/detail/endian/endian.hpp>
|
||||
#include <boost/thread.hpp>
|
||||
#include <boost/timer/timer.hpp>
|
||||
#include <boost/type_traits/is_arithmetic.hpp>
|
||||
|
|
|
|||
8
utils/configure_local_paths_msvs2019.cmd
Normal file
8
utils/configure_local_paths_msvs2019.cmd
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
@echo off
|
||||
rem
|
||||
rem This file contains local path settings for your own personal dev environment.
|
||||
rem Rename to configure_local_paths.cmd and do not commit.
|
||||
rem
|
||||
|
||||
set QT_PREFIX_PATH=C:\dev\_sdk\Qt5.15.2\5.15.2
|
||||
set BOOST_ROOT=C:\dev\_sdk\boost_1_76_0
|
||||
7
utils/configure_win64_msvs2019_gui_testnet.cmd
Normal file
7
utils/configure_win64_msvs2019_gui_testnet.cmd
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
call configure_local_paths_msvs2019.cmd
|
||||
|
||||
cd ..
|
||||
@mkdir build_msvc2019_64_tn
|
||||
cd build_msvc2019_64_tn
|
||||
|
||||
cmake -D TESTNET=TRUE -D USE_PCH=TRUE -D BUILD_TESTS=TRUE -D CMAKE_PREFIX_PATH="%QT_PREFIX_PATH%"\msvc2019_64 -D BUILD_GUI=TRUE -D STATIC=FALSE -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_ROOT%\lib64-msvc-14.2" -G "Visual Studio 16 2019" -A x64 -T host=x64 ".."
|
||||
Loading…
Add table
Reference in a new issue