comparison src/Make_mvc.mak @ 13468:539436dcb134 v8.0.1608

patch 8.0.1608: Win32: directx not enabled by default commit https://github.com/vim/vim/commit/43cb6262141c0a0853680bd8d0433e04db3bf182 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 14 21:39:02 2018 +0100 patch 8.0.1608: Win32: directx not enabled by default Problem: Win32: directx not enabled by default. Solution: Change Makefile to enable directx by default. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Wed, 14 Mar 2018 21:45:06 +0100
parents 017a81187128
children 88c8fc800bcc
comparison
equal deleted inserted replaced
13467:b073fa38b590 13468:539436dcb134
24 # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is HUGE) 24 # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is HUGE)
25 # 25 #
26 # GUI interface: GUI=yes (default is no) 26 # GUI interface: GUI=yes (default is no)
27 # 27 #
28 # GUI with DirectWrite (DirectX): DIRECTX=yes 28 # GUI with DirectWrite (DirectX): DIRECTX=yes
29 # (default is no, requires GUI=yes and MBYTE=yes) 29 # (default is yes if GUI=yes, requires GUI=yes and MBYTE=yes)
30 # 30 #
31 # Color emoji support: COLOR_EMOJI=yes 31 # Color emoji support: COLOR_EMOJI=yes
32 # (default is yes if DIRECTX=yes, requires WinSDK 8.1 or later.) 32 # (default is yes if DIRECTX=yes, requires WinSDK 8.1 or later.)
33 # 33 #
34 # OLE interface: OLE=yes (usually with GUI=yes) 34 # OLE interface: OLE=yes (usually with GUI=yes)
177 # nmake -f Make_mvc.mvc "DEFINES=-DEMACS_TAGS" 177 # nmake -f Make_mvc.mvc "DEFINES=-DEMACS_TAGS"
178 178
179 # Build on Windows NT/XP 179 # Build on Windows NT/XP
180 180
181 TARGETOS = WINNT 181 TARGETOS = WINNT
182
183 !ifndef DIRECTX
184 DIRECTX = $(GUI)
185 !endif
182 186
183 # Select one of eight object code directories, depends on GUI, OLE, DEBUG and 187 # Select one of eight object code directories, depends on GUI, OLE, DEBUG and
184 # interfaces. 188 # interfaces.
185 # If you change something else, do "make clean" first! 189 # If you change something else, do "make clean" first!
186 !if "$(GUI)" == "yes" 190 !if "$(GUI)" == "yes"