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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « srtp/install-sh ('k') | srtp/srtp.c » ('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
deleted file mode 100644
index 34f961af27336e97bdd361b8136618245cbac7b5..0000000000000000000000000000000000000000
--- a/srtp/install-win.bat
+++ /dev/null
@@ -1,31 +0,0 @@
-:: 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/install-sh ('k') | srtp/srtp.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698