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

Unified Diff: srtp/install-win.bat

Issue 889083003: Update libsrtp to upstream 1.5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libsrtp@master
Patch Set: Updated to libsrtp 1.5.1 Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « srtp/include/srtp_priv.h ('k') | srtp/srtp.def » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: srtp/install-win.bat
diff --git a/srtp/install-win.bat b/srtp/install-win.bat
index 34f961af27336e97bdd361b8136618245cbac7b5..d95d6d9f4d5b601e966e9916c93065d13c6bd085 100644
--- a/srtp/install-win.bat
+++ b/srtp/install-win.bat
@@ -1,31 +1,31 @@
-:: Installs from srtp windows build directory to directory specified on
-:: command line
-
-
-@if "%1"=="" (
- echo "Usage: %~nx0 destdir"
- exit /b 1
-) else (
- set destdir=%1
-)
-
-@if not exist %destdir% (
- echo %destdir% not found
- exit /b 1
-)
-
-@for %%d in (include\srtp.h crypto\include\crypto.h Debug\srtp.lib Release\srtp.lib) do (
- if not exist "%%d" (
- echo "%%d not found: are you in the right directory?"
- exit /b 1
- )
-)
-
-mkdir %destdir%\include
-mkdir %destdir%\include\srtp
-mkdir %destdir%\lib
-
-copy include\*.h %destdir%\include\srtp
-copy crypto\include\*.h %destdir%\include\srtp
-copy Release\srtp.lib %destdir%\lib\srtp.lib
-copy Debug\srtp.lib %destdir%\lib\srtpd.lib
+:: Installs from srtp windows build directory to directory specified on
+:: command line
+
+
+@if "%1"=="" (
+ echo "Usage: %~nx0 destdir"
+ exit /b 1
+) else (
+ set destdir=%1
+)
+
+@if not exist %destdir% (
+ echo %destdir% not found
+ exit /b 1
+)
+
+@for %%d in (include\srtp.h crypto\include\crypto.h Debug\srtp.lib Release\srtp.lib) do (
+ if not exist "%%d" (
+ echo "%%d not found: are you in the right directory?"
+ exit /b 1
+ )
+)
+
+mkdir %destdir%\include
+mkdir %destdir%\include\srtp
+mkdir %destdir%\lib
+
+copy include\*.h %destdir%\include\srtp
+copy crypto\include\*.h %destdir%\include\srtp
+copy Release\srtp.lib %destdir%\lib\srtp.lib
+copy Debug\srtp.lib %destdir%\lib\srtpd.lib
« no previous file with comments | « srtp/include/srtp_priv.h ('k') | srtp/srtp.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698