urbackup_backend/external/aws-cpp-sdk/AwsChecksums/codebuild/common-windows.bat
2021-07-07 18:47:38 +02:00

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%