* Slow down clock * Faster and slower * A0/50 * Fix dilithium inputs scan to compare for the voutpubtxids[vout] * Prevent use of uninitialized ignoredAddresses * Filter out amount=0 UTXOs from getsnapshot results * rogue msvc build (#1327) * + msvc 2015 deps headers * + msvc deps build script this script builds only deps, to build rogue binary, open *.sln file in MSVC 2015 and build x64 Release version. * + msvc solution (*.sln) update * + msvc build fix * fix libcurl deps install (msvc) * Fix wrong dilithium compare * Port getchaintxstats from BTC master (#1328) This will allow explorers to present interesting analytics about transaction volume in various time frames. * customcc * Make custom * Syntax * update * Patch rogue msvc (#1330) * + msvc 2015 deps headers * + msvc deps build script this script builds only deps, to build rogue binary, open *.sln file in MSVC 2015 and build x64 Release version. * + msvc solution (*.sln) update * + msvc build fix * fix libcurl deps install (msvc) * [msvc] fix seed str -> uint64 conversion * [msvc] fix config file name issue + debug print for send raw tx * + comment debug printouts * [ msvc ] display compiler version and build date on startup * +pritns * +prints * I, * Print hex * Allow gold mismatch for validate * Stricter player data validation * Change data source * Allow claiming less than cashout value * 50902 exemption * Taxied * Print * Debug file * Log seed * Potion file * ; * Log seed * Commands log * Fp * Test * Prints * static FILE *fp; * Fp2 * Daemons or fuses * Fuse prints * All funcs * Logfp * turn_see is a daemon! * 'void (*)(struct rogue_state *, int) * -prints * -file fp * -potions file * Test * -log * -print replay2 gold * Test * D'oh!
65 lines
1.5 KiB
Batchfile
65 lines
1.5 KiB
Batchfile
@echo off
|
|
echo Rogue Build Script by Decker (c) 2019
|
|
|
|
@REM Check for Visual Studio
|
|
call set "VSPATH="
|
|
if defined VS140COMNTOOLS ( if not defined VSPATH (
|
|
call set "VSPATH=%%VS140COMNTOOLS%%"
|
|
) )
|
|
|
|
@REM check if we already have the tools in the environment
|
|
if exist "%VCINSTALLDIR%" (
|
|
goto compile
|
|
)
|
|
|
|
if not defined VSPATH (
|
|
echo You need Microsoft Visual Studio 15 installed
|
|
pause
|
|
exit
|
|
)
|
|
|
|
@REM set up the environment
|
|
if exist "%VSPATH%..\..\vc\vcvarsall.bat" (
|
|
call "%%VSPATH%%..\..\vc\vcvarsall.bat" amd64
|
|
goto compile
|
|
)
|
|
|
|
echo Unable to set up the environment
|
|
pause
|
|
exit
|
|
|
|
:compile
|
|
|
|
mkdir x86_64-w64-msvc\deps
|
|
mkdir x86_64-w64-msvc\deps\install
|
|
|
|
pushd x86_64-w64-msvc\deps
|
|
|
|
:compile_pdcurses
|
|
rem git clone https://github.com/wmcbrine/PDCurses PDCurses.org
|
|
git clone https://github.com/Bill-Gray/PDCurses
|
|
|
|
set PREFIX_DIR=%CD%\install
|
|
|
|
pushd PDCurses
|
|
mkdir build64 & pushd build64
|
|
rem cmake -G"Visual Studio 14 2015 Win64" -DPDC_WIDE=ON -DCMAKE_INSTALL_PREFIX=%PREFIX_DIR% -DCMAKE_BUILD_TYPE=Debug -DPDCDEBUG=ON ..
|
|
cmake -G"Visual Studio 14 2015 Win64" -DPDC_WIDE=ON -DCMAKE_INSTALL_PREFIX=%PREFIX_DIR% -DCMAKE_BUILD_TYPE=Release ..
|
|
popd
|
|
rem cmake --build build64 --config Debug --target install
|
|
cmake --build build64 --config Release --target install
|
|
popd
|
|
|
|
:compile_curl
|
|
|
|
git clone https://github.com/curl/curl
|
|
pushd curl
|
|
|
|
mkdir build64 & pushd build64
|
|
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_INSTALL_PREFIX=%PREFIX_DIR% -DCMAKE_USE_WINSSL:BOOL=ON ..
|
|
cmake --build . --config Release --target libcurl
|
|
cmake --build . --config Release --target install
|
|
popd
|
|
popd
|
|
|