This commit is contained in:
nephacks
2025-06-04 03:22:50 +02:00
parent f234f23848
commit f12416cffd
14243 changed files with 6446499 additions and 26 deletions

33
external/crypto++-5.61/build.bat vendored Normal file
View File

@ -0,0 +1,33 @@
@setlocal
@if "%1"=="2013" goto 2013
@if "%1"=="2010" goto 2010
@echo Specify 2010 or 2013 as a command line argument.
@exit /b
@:2010
set VARSBAT="%VS100COMNTOOLS%vsvars32.bat"
set SLN=cryptest2010
set PROJECT=cryptlib
@goto make
@:2013
set VARSBAT="%VS120COMNTOOLS%vsvars32.bat"
set SLN=cryptest2013
set PROJECT=cryptlib2013
@goto make
:make
if not defined VSINSTALLDIR (
call %VARSBAT%
)
del *.lib /s
devenv %SLN%.sln /rebuild "release|win32" /project %PROJECT%
devenv %SLN%.sln /rebuild "debug|win32" /project %PROJECT%
devenv %SLN%.sln /rebuild "release|x64" /project %PROJECT%
devenv %SLN%.sln /rebuild "debug|x64" /project %PROJECT%
@echo The post-build steps in the .vcxproj file copy the .libs to the destinations.