1
0
forked from cheng/wallet

moved utcmt to its proper directory

This commit is contained in:
Cheng 2024-02-14 11:48:05 +00:00
parent 22636219d8
commit fac065506c
No known key found for this signature in database
GPG Key ID: 571C3A9C3B9E6FCA
4 changed files with 36 additions and 3 deletions

View File

@ -145,7 +145,7 @@
<ClInclude Include="../src/stdafx.h" />
<ClInclude Include="../src/welcome_to_rhocoin.h" />
<ClInclude Include="../src/serialization.h" />
<ClInclude Include="../src/sqlite3.h" />
<ClInclude Include="..\sqlite3\sqlite3.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="../src/app.cpp" />
@ -194,4 +194,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>

33
msvc/win.bat Normal file
View File

@ -0,0 +1,33 @@
echo on
call C:\"Program Files (x86)"\"Microsoft Visual Studio"\2022\BuildTools\VC\Auxiliary\Build\vcvarsamd64_x86.bat
call C:\"Program Files"\"Microsoft Visual Studio"\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
echo on
msbuild wallet.sln -p:Configuration=Debug;Platform=x64 -m
echo off
IF %ERRORLEVEL% NEQ 0 (
PAUSE
GOTO:EOF
)
echo on
msbuild wallet.sln -p:Configuration=Release;Platform=x64 -m
echo off
IF %ERRORLEVEL% NEQ 0 (
PAUSE
GOTO:EOF
)
echo on
.\build\Debug\wallet.exe --complete --test
echo off
IF %ERRORLEVEL% NEQ 0 (
echo failed unit test on debug build
) ELSE (
echo passed unit test on debug build
)
echo on
.\build\Release\wallet.exe --complete --test
echo off
IF %ERRORLEVEL% NEQ 0 (
echo failed unit test on release build
) ELSE (
echo passed unit test on release build
)

View File

@ -14,7 +14,7 @@
#include <memory> // for shared_ptr, unique_ptr
#include <span>
#include "ISqlite3.h"
#include "sqlite3.h"
#include "../sqlite3/sqlite3.h"
/*Because sqlite3.h is frigging enormous and does no end of strange,
clever things that I do not understand, I do not include it my standard header files,
only in this file, which does not include my standard header files.