mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
19 lines
464 B
Batchfile
19 lines
464 B
Batchfile
|
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 ..
|
||
|
|