You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
445 B
15 lines
445 B
7 years ago
|
@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 .
|