comparison makefile.mingw @ 2236:e7060d262939

Win: Switched to using Rich Edit MLE by default on Windows. Added DW_FEATURE_MLE_RICH_EDIT option to dw_feature_set() to turn it off.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 05 Jan 2021 01:52:35 +0000
parents 87d574dda8f5
children afe9c20294ca
comparison
equal deleted inserted replaced
2235:bd642d04d7c6 2236:e7060d262939
22 endif 22 endif
23 23
24 # Had to add -Wno-unused-value due to every Win32 macro generating this warning... 24 # Had to add -Wno-unused-value due to every Win32 macro generating this warning...
25 # GCC has marked this as WONTFIX http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24900 25 # GCC has marked this as WONTFIX http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24900
26 # This seems to be fixed in Mingw-w64 8.1 readd the option below if using an old compiler 26 # This seems to be fixed in Mingw-w64 8.1 readd the option below if using an old compiler
27 CFLAGS = -O -g -DMSVC $(PLATFORM_DEF) $(PLATFORM_CFLAGS) -D__WIN32__ -DBUILD_DLL -DGDIPLUS -DTOOLBAR -DUNICODE -D_UNICODE -DISOLATION_AWARE_ENABLED=1 -I./win -I. -I./platform -Wall -mthreads -o $(@) 27 CFLAGS = -O -g -DMSVC $(PLATFORM_DEF) $(PLATFORM_CFLAGS) -D__WIN32__ -DBUILD_DLL -DGDIPLUS -DRICHEDIT -DTOOLBAR -DUNICODE -D_UNICODE -DISOLATION_AWARE_ENABLED=1 -I./win -I. -I./platform -Wall -mthreads -o $(@)
28 LDFLAGS = -shared -mwindows -mthreads -lcomctl32 -lole32 -loleaut32 -luserenv -lmsimg32 -lgdiplus -luuid 28 LDFLAGS = -shared -mwindows -mthreads -lcomctl32 -lole32 -loleaut32 -luserenv -lmsimg32 -lgdiplus -luuid
29 29
30 COMPATOBJECTS = dwcompat.o dirent.o 30 COMPATOBJECTS = dwcompat.o dirent.o
31 OBJECTS = dw.o browser.o XBrowseForFolder.o 31 OBJECTS = dw.o browser.o XBrowseForFolder.o
32 32