1
0
Fork 0

PROJECT: clean up build.bat

This commit is contained in:
mrexodia 2017-08-21 16:26:39 +02:00
parent 16b40aab5b
commit 8d8fd3019a
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
2 changed files with 1 additions and 2430 deletions

2421
Doxyfile

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,6 @@ cd %~dp0
if /i "%1"=="x32" call setenv.bat x32&set type=Configuration=Release;Platform=Win32&goto build
if /i "%1"=="x64" call setenv.bat x64&set type=Configuration=Release;Platform=x64&goto build
if /i "%1"=="coverity" goto coverity
if /i "%1"=="doxygen" call setenv.bat doxygen&goto doxygen
goto usage
@ -51,21 +50,14 @@ cov-build --dir cov-int --instrument build.bat %2%
goto :restorepath
:doxygen
doxygen
goto :restorepath
:usage
echo "Usage: build.bat x32/x64/coverity (x32/x64)/doxygen/chm"
echo "Usage: build.bat x32/x64/coverity"
echo.
echo Examples:
echo build.bat x32 : builds 32-bit release build
echo build.bat x64 : builds 64-bit release build
echo build.bat coverity x32 : builds 32-bit coverity build
echo build.bat coverity x64 : builds 64-bit coverity build
echo build.bat doxygen : generate doxygen documentation
echo build.bat chm : generate windows help format documentation
goto :restorepath
:restorepath