Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: srtp/install-win.bat

Issue 2344973002: Update libsrtp to version 2.0 (Closed)
Patch Set: Add '.' back to include_dirs Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « srtp/install-sh ('k') | srtp/srtp.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 :: Installs from srtp windows build directory to directory specified on
2 :: command line
3
4
5 @if "%1"=="" (
6 echo "Usage: %~nx0 destdir"
7 exit /b 1
8 ) else (
9 set destdir=%1
10 )
11
12 @if not exist %destdir% (
13 echo %destdir% not found
14 exit /b 1
15 )
16
17 @for %%d in (include\srtp.h crypto\include\crypto.h Debug\srtp.lib Release\srtp. lib) do (
18 if not exist "%%d" (
19 echo "%%d not found: are you in the right directory?"
20 exit /b 1
21 )
22 )
23
24 mkdir %destdir%\include
25 mkdir %destdir%\include\srtp
26 mkdir %destdir%\lib
27
28 copy include\*.h %destdir%\include\srtp
29 copy crypto\include\*.h %destdir%\include\srtp
30 copy Release\srtp.lib %destdir%\lib\srtp.lib
31 copy Debug\srtp.lib %destdir%\lib\srtpd.lib
OLDNEW
« no previous file with comments | « srtp/install-sh ('k') | srtp/srtp.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698