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

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

Issue 3423016: Add current version of libSRTP from CVS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: '' Created 10 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « libsrtp/install-sh ('k') | libsrtp/srtp.def » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ CRLF
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 | « libsrtp/install-sh ('k') | libsrtp/srtp.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698