Skip to content

Commit

Permalink
added sample script to build cpp-ethereum libs under Windows (not ful…
Browse files Browse the repository at this point in the history
…ly tested)
  • Loading branch information
DeckerSU committed Feb 26, 2018
1 parent ea64929 commit b38d2d9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions marketmaker_build_cpp-ethereum.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@echo off
rem Sample script to build cpp-ethereum libs by Decker (don't fully tested yet)
rem Make sure cpp-ethereum is empty, before run.

git submodule init
git submodule update --init --recursive
cd cpp-ethereum
rem git submodule init
rem git submodule update --init
call scripts\install_deps.bat
mkdir build_win64_release
cd build_win64_release
cmake .. -G "Visual Studio 14 2015 Win64"
cmake --build . --config Release
rem cmake --build .

0 comments on commit b38d2d9

Please sign in to comment.