Skip to content

Commit

Permalink
[BW]: [Ign] Addsd batches simplifying x64 development on windows plat…
Browse files Browse the repository at this point in the history
…form.
  • Loading branch information
vogel76 committed Jun 4, 2014
1 parent 4f23824 commit d76348a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions run_cmake_x64.bat
@@ -0,0 +1,4 @@
setlocal
call "%~dp0\setenv_x64.bat"
cd %BITSHARES_ROOT%
cmake-gui -G "Visual Studio 12"
4 changes: 4 additions & 0 deletions run_vs_x64.bat
@@ -0,0 +1,4 @@
@echo off
call %~dp0\setenv_x64.bat
start WDExpress.exe
rem start devenv.com
16 changes: 16 additions & 0 deletions setenv_x64.bat
@@ -0,0 +1,16 @@
@echo off
set BITSHARES_ROOT=%~dp0..\
echo Using %BITSHARES_ROOT% as Bitshare root directory

set OPENSSL_ROOT=%BITSHARES_ROOT%\OpenSSL.x64
set OPENSSL_ROOT_DIR=%OPENSSL_ROOT%
set OPENSSL_INCLUDE_DIR=%OPENSSL_ROOT%\include
set DBROOTDIR=%BITSHARES_ROOT%\BerkeleyDB.x64

set BOOST_ROOT=%BITSHARES_ROOT%\boost_1.55.x64

set PATH=%BITSHARES_ROOT%\bin;%BITSHARES_ROOT%\Cmake\bin;%BITSHARES_ROOT%\boost\stage\lib;%PATH%

echo Setting up VS2013 environment...
call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64

0 comments on commit d76348a

Please sign in to comment.