comparison src/Make_mvc.mak @ 7699:854302b82ff9 v7.4.1148

commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 21 20:24:34 2016 +0100 patch 7.4.1148 Problem: Default for MingW and Cygwin is still "normal". Solution: Use "huge" as default. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Jan 2016 20:30:04 +0100
parents 77a14f3bc18b
children bce3b5ddb393
comparison
equal deleted inserted replaced
7698:0dc814ca4858 7699:854302b82ff9
18 # For MSVC 11 you need to specify where the Win32.mak file is, e.g.: 18 # For MSVC 11 you need to specify where the Win32.mak file is, e.g.:
19 # SDK_INCLUDE_DIR="C:\Program Files\Microsoft SDKs\Windows\v7.1\Include" 19 # SDK_INCLUDE_DIR="C:\Program Files\Microsoft SDKs\Windows\v7.1\Include"
20 # 20 #
21 # !!!! After changing features do "nmake clean" first !!!! 21 # !!!! After changing features do "nmake clean" first !!!!
22 # 22 #
23 # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG) 23 # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is HUGE)
24 # 24 #
25 # GUI interface: GUI=yes (default is no) 25 # GUI interface: GUI=yes (default is no)
26 # 26 #
27 # GUI with DirectWrite(DirectX): DIRECTX=yes 27 # GUI with DirectWrite(DirectX): DIRECTX=yes
28 # (default is no, requires GUI=yes) 28 # (default is no, requires GUI=yes)
948 948
949 # 949 #
950 # FEATURES: TINY, SMALL, NORMAL, BIG or HUGE 950 # FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
951 # 951 #
952 !if "$(FEATURES)"=="" 952 !if "$(FEATURES)"==""
953 FEATURES = BIG 953 FEATURES = HUGE
954 !endif 954 !endif
955 CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES) 955 CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
956 956
957 # 957 #
958 # Always generate the .pdb file, so that we get debug symbols that can be used 958 # Always generate the .pdb file, so that we get debug symbols that can be used