Add libusb and libuvc
[rtmpclient.git] / app / src / main / jni / libusb-1.0.22 / msvc / appveyor.bat
1 echo on
2 SetLocal EnableDelayedExpansion
3
4 if [%Configuration%] NEQ [Debug] goto releasex64
5 if [%Configuration%] NEQ [Release] goto debugx64
6
7 :debugx64
8 if [%Platform%] NEQ [x64] goto debugWin32
9 if [%Configuration%] NEQ [Debug] exit 0
10 call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Debug /x64 || exit /B
11 msbuild %libusb_2010% /p:Configuration=Debug,Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B
12
13 :releasex64
14 if [%Platform%] NEQ [x64] goto releaseWin32
15 if [%Configuration%] NEQ [Release] exit 0
16 call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /x64 || exit /B
17 msbuild %libusb_2010% /p:Configuration=Release,Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B
18
19 :debugWin32
20 if [%Platform%] NEQ [Win32] exit 0
21 if [%Configuration%] NEQ [Debug] exit 0
22 msbuild %libusb_2010% /p:Configuration=Debug,Platform=Win32 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B
23
24 :releaseWin32
25 if [%Platform%] NEQ [Win32] exit 0
26 if [%Configuration%] NEQ [Release] exit 0
27 msbuild %libusb_2010% /p:Configuration=Release,Platform=Win32 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B