comparison makefile.vc @ 907:3e393a9375c4

Implemented _dw_user_dir() using GetUserProfileDirectory() on Windows. GetUserProfileDirectory is in userenv.dll which is a file only included on NT-based Windows versions. Therefore Windows 95/98/ME are no longer supported by Dynamic Windows.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 19 Apr 2011 07:55:07 +0000
parents b28ec71cfc88
children 841b66d2d1b9
comparison
equal deleted inserted replaced
906:71b0e132d9df 907:3e393a9375c4
46 LINK_DEBUG = -release 46 LINK_DEBUG = -release
47 !endif 47 !endif
48 48
49 CC = cl 49 CC = cl
50 CFLAGS = -c $(PLATFORM_DEF) -D__WIN32__ -DMSVC -DBUILD_DLL -I$(SRCDIR)\platform -I$(SRCDIR) 50 CFLAGS = -c $(PLATFORM_DEF) -D__WIN32__ -DMSVC -DBUILD_DLL -I$(SRCDIR)\platform -I$(SRCDIR)
51 LIBS = wsock32.lib kernel32.lib user32.lib comctl32.lib gdi32.lib advapi32.lib shell32.lib comdlg32.lib ole32.lib oleaut32.lib 51 LIBS = wsock32.lib kernel32.lib user32.lib comctl32.lib gdi32.lib advapi32.lib shell32.lib comdlg32.lib ole32.lib oleaut32.lib userenv.lib
52 RES = 52 RES =
53 LINKFLAGS = -machine:$(TARGET_CPU) -manifest $(LINK_DEBUG) 53 LINKFLAGS = -machine:$(TARGET_CPU) -manifest $(LINK_DEBUG)
54 DLLLINKFLAGS = -dll 54 DLLLINKFLAGS = -dll
55 LINK = link 55 LINK = link
56 DEFFILE = $(SRCDIR)\dww.def 56 DEFFILE = $(SRCDIR)\dww.def