Advertisement
abudden

configure_vim.cmd

Mar 14th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.88 KB | None | 0 0
  1. @echo off
  2.  
  3. :: Windows SDK Include directory. No quotation marks.
  4. set SDK_INCLUDE_DIR=C:\Program Files\Microsoft SDKs\Windows\v7.1\Include
  5.  
  6. :: Visual Studio directory. Quotation marks.
  7. set VS_DIR="C:\applications\development\ide\visual_studio_community_2013"
  8.  
  9. :: Target architecture, AMD64 (64-bit) or I386 (32-bit)
  10. set CPU=AMD64
  11.  
  12. :: Toolchain, x86_amd64 (cross-compile 64-bit) or x86 (32-bit) or amd64 (64-bit)
  13. set TOOLCHAIN=x86_amd64
  14.  
  15. :: TINY, SMALL, NORMAL, BIG or HUGE. NORMAL or above recommended
  16. set FEATURES=HUGE
  17.  
  18. :: yes for gVim, no for vim
  19. set GUI=yes
  20.  
  21. :: IDE integrations we don't need
  22. set NETBEANS=no
  23. set CSCOPE=yes
  24.  
  25. :: UTF-8 encoding
  26. set MBYTE=yes
  27.  
  28. :: Enable Python scripting
  29. set DYNAMIC_PYTHON=yes
  30. set PYTHON=C:\applications\development\languages\anaconda2
  31. set PYTHON_VER=27
  32.  
  33. echo "Configuring Visual Studio..."
  34. call %VS_DIR%\VC\vcvarsall.bat %TOOLCHAIN%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement