aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorb-r-o-c-k <brockmammen@gmail.com>2018-06-12 08:47:16 -0500
committerb-r-o-c-k <brockmammen@gmail.com>2018-06-12 08:47:16 -0500
commit40a257e11fc587b07b66f465033681f124779c0d (patch)
tree34abf06d739e231db0e96b91b6f318c4fa5af42d
parent61890382eb65193c98a4f0312548ecceb82dad3b (diff)
downloadrneovim-40a257e11fc587b07b66f465033681f124779c0d.tar.gz
rneovim-40a257e11fc587b07b66f465033681f124779c0d.tar.bz2
rneovim-40a257e11fc587b07b66f465033681f124779c0d.zip
Revert "makedeps.bat"
-rw-r--r--makedeps.bat18
1 files changed, 0 insertions, 18 deletions
diff --git a/makedeps.bat b/makedeps.bat
deleted file mode 100644
index a614885568..0000000000
--- a/makedeps.bat
+++ /dev/null
@@ -1,18 +0,0 @@
-echo off
-
-if not defined VS150COMNTOOLS (
- echo error: missing VS150COMNTOOLS environment variable.
- echo Run this script from the 'Developer Command Prompt'.
- exit /b 1
-)
-
-echo on
-
-set CMAKE=%VS150COMNTOOLS%\..\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe
-
-mkdir .deps
-cd .deps
-"%CMAKE%" -G "Visual Studio 15 2017" "-DCMAKE_BUILD_TYPE=RelWithDebInfo" ..\third-party\
-"%CMAKE%" --build . --config RelWithDebInfo -- "/verbosity:normal"
-cd ..
-