mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
14 lines
375 B
Batchfile
Executable File
14 lines
375 B
Batchfile
Executable File
|
|
mkdir build
|
|
cd build
|
|
cmake %* -DCMAKE_BUILD_TYPE="RelWithDebInfo" -DCMAKE_INSTALL_PREFIX=../../install ../ || goto error
|
|
msbuild.exe aws-checksums.vcxproj /p:Configuration=RelWithDebInfo || goto error
|
|
msbuild.exe aws-checksums-tests.vcxproj /p:Configuration=RelWithDebInfo || goto error
|
|
ctest -V
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|