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.
14 lines
365 B
14 lines
365 B
@echo off
|
|
rem @file compile_ethereum.bat
|
|
rem @author Tim Hughes <tim@twistedfury.com>
|
|
rem @date 2014
|
|
echo on
|
|
|
|
rem : import VC environment
|
|
call "%VS120COMNTOOLS%\VsDevCmd.bat"
|
|
|
|
rem : build for x64
|
|
msbuild /maxcpucount /p:Configuration=Release;Platform=x64 Ethereum.sln
|
|
|
|
rem : build for Win32
|
|
msbuild /maxcpucount /p:Configuration=Release;Platform=Win32 Ethereum.sln
|
|
|