Rebake all the samples, demos and tests makefiles.
This should have been committed together with the changes to the debug flags handling in build/bakefiles in r61887. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61893 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		| @@ -41,12 +41,12 @@ wx_top_builddir = @wx_top_builddir@ | ||||
|  | ||||
| DESTDIR =  | ||||
| WX_RELEASE = 2.9 | ||||
| WX_VERSION = $(WX_RELEASE).0 | ||||
| WX_VERSION = $(WX_RELEASE).1 | ||||
| LIBDIRNAME = $(wx_top_builddir)/lib | ||||
| HTMLPRINTING_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ | ||||
| 	$(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ | ||||
| 	-I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../../samples $(CXXWARNINGS) \ | ||||
| 	$(CPPFLAGS) $(CXXFLAGS) | ||||
| 	$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ | ||||
| 	$(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) \ | ||||
| 	-I$(srcdir)/../../../samples $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS) | ||||
| HTMLPRINTING_OBJECTS =  \ | ||||
| 	$(__htmlprinting_os2_lib_res) \ | ||||
| 	htmlprinting_printing.o \ | ||||
| @@ -59,8 +59,7 @@ HTMLPRINTING_OBJECTS =  \ | ||||
| @COND_USE_GUI_0@PORTNAME = base | ||||
| @COND_USE_GUI_1@PORTNAME = $(TOOLKIT_LOWERCASE)$(TOOLKIT_VERSION) | ||||
| @COND_TOOLKIT_MAC@WXBASEPORT = _carbon | ||||
| @COND_BUILD_debug_DEBUG_FLAG_default@WXDEBUGFLAG = d | ||||
| @COND_DEBUG_FLAG_1@WXDEBUGFLAG = d | ||||
| @COND_BUILD_debug@WXDEBUGFLAG = d | ||||
| @COND_UNICODE_1@WXUNICODEFLAG = u | ||||
| @COND_WXUNIV_1@WXUNIVNAME = univ | ||||
| @COND_MONOLITHIC_0@EXTRALIBS_FOR_BASE = $(EXTRALIBS) | ||||
| @@ -72,6 +71,8 @@ HTMLPRINTING_OBJECTS =  \ | ||||
| @COND_PLATFORM_MAC_1@	$(SETFILE) -t APPL htmlprinting$(EXEEXT) | ||||
| @COND_WXUNIV_1@__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__ | ||||
| @COND_WXUNIV_1@__WXUNIV_DEFINE_p_2 = --define __WXUNIVERSAL__ | ||||
| @COND_DEBUG_FLAG_0@__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0 | ||||
| @COND_DEBUG_FLAG_0@__DEBUG_DEFINE_p_2 = --define wxDEBUG_LEVEL=0 | ||||
| @COND_USE_EXCEPTIONS_0@__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS | ||||
| @COND_USE_EXCEPTIONS_0@__EXCEPTIONS_DEFINE_p_2 = --define wxNO_EXCEPTIONS | ||||
| @COND_USE_RTTI_0@__RTTI_DEFINE_p = -DwxNO_RTTI | ||||
| @@ -199,7 +200,7 @@ htmlprinting_printing.o: $(srcdir)/printing.cpp | ||||
| 	$(CXXC) -c -o $@ $(HTMLPRINTING_CXXFLAGS) $(srcdir)/printing.cpp | ||||
|  | ||||
| htmlprinting_printing_rc.o: $(srcdir)/printing.rc | ||||
| 	$(WINDRES) -i$< -o$@    --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_2)  $(__EXCEPTIONS_DEFINE_p_2) $(__RTTI_DEFINE_p_2) $(__THREAD_DEFINE_p_2)   --include-dir $(srcdir) $(__DLLFLAG_p_2) --include-dir $(srcdir)/../../../samples $(__RCDEFDIR_p_1) --include-dir $(top_srcdir)/include | ||||
| 	$(WINDRES) -i$< -o$@    --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_2) $(__DEBUG_DEFINE_p_2) $(__EXCEPTIONS_DEFINE_p_2) $(__RTTI_DEFINE_p_2) $(__THREAD_DEFINE_p_2)   --include-dir $(srcdir) $(__DLLFLAG_p_2) --include-dir $(srcdir)/../../../samples $(__RCDEFDIR_p_1) --include-dir $(top_srcdir)/include | ||||
|  | ||||
|  | ||||
| # Include dependency info, if present: | ||||
|   | ||||
| @@ -45,10 +45,7 @@ PORTNAME = base | ||||
| !if "$(USE_GUI)" == "1" | ||||
| PORTNAME = msw | ||||
| !endif | ||||
| !if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" | ||||
| WXDEBUGFLAG = d | ||||
| !endif | ||||
| !if "$(DEBUG_FLAG)" == "1" | ||||
| !if "$(BUILD)" == "debug" | ||||
| WXDEBUGFLAG = d | ||||
| !endif | ||||
| !if "$(UNICODE)" == "1" | ||||
| @@ -108,17 +105,11 @@ __WXUNIV_DEFINE_p = -D__WXUNIVERSAL__ | ||||
| !if "$(WXUNIV)" == "1" | ||||
| __WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__ | ||||
| !endif | ||||
| !if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" | ||||
| __DEBUG_DEFINE_p = -D__WXDEBUG__ | ||||
| !if "$(DEBUG_FLAG)" == "0" | ||||
| __DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0 | ||||
| !endif | ||||
| !if "$(DEBUG_FLAG)" == "1" | ||||
| __DEBUG_DEFINE_p = -D__WXDEBUG__ | ||||
| !endif | ||||
| !if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" | ||||
| __DEBUG_DEFINE_p_1 = -d__WXDEBUG__ | ||||
| !endif | ||||
| !if "$(DEBUG_FLAG)" == "1" | ||||
| __DEBUG_DEFINE_p_1 = -d__WXDEBUG__ | ||||
| !if "$(DEBUG_FLAG)" == "0" | ||||
| __DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0 | ||||
| !endif | ||||
| !if "$(USE_EXCEPTIONS)" == "0" | ||||
| __EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS | ||||
|   | ||||
| @@ -43,11 +43,6 @@ ifeq ($(USE_GUI),1) | ||||
| PORTNAME = msw | ||||
| endif | ||||
| ifeq ($(BUILD),debug) | ||||
| ifeq ($(DEBUG_FLAG),default) | ||||
| WXDEBUGFLAG = d | ||||
| endif | ||||
| endif | ||||
| ifeq ($(DEBUG_FLAG),1) | ||||
| WXDEBUGFLAG = d | ||||
| endif | ||||
| ifeq ($(UNICODE),1) | ||||
| @@ -95,21 +90,11 @@ endif | ||||
| ifeq ($(WXUNIV),1) | ||||
| __WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__ | ||||
| endif | ||||
| ifeq ($(BUILD),debug) | ||||
| ifeq ($(DEBUG_FLAG),default) | ||||
| __DEBUG_DEFINE_p = -D__WXDEBUG__ | ||||
| ifeq ($(DEBUG_FLAG),0) | ||||
| __DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0 | ||||
| endif | ||||
| endif | ||||
| ifeq ($(DEBUG_FLAG),1) | ||||
| __DEBUG_DEFINE_p = -D__WXDEBUG__ | ||||
| endif | ||||
| ifeq ($(BUILD),debug) | ||||
| ifeq ($(DEBUG_FLAG),default) | ||||
| __DEBUG_DEFINE_p_1 = --define __WXDEBUG__ | ||||
| endif | ||||
| endif | ||||
| ifeq ($(DEBUG_FLAG),1) | ||||
| __DEBUG_DEFINE_p_1 = --define __WXDEBUG__ | ||||
| ifeq ($(DEBUG_FLAG),0) | ||||
| __DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0 | ||||
| endif | ||||
| ifeq ($(USE_EXCEPTIONS),0) | ||||
| __EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS | ||||
|   | ||||
| @@ -11,7 +11,7 @@ | ||||
| # ------------------------------------------------------------------------- | ||||
|  | ||||
| # C++ compiler  | ||||
| CXX = g++ | ||||
| CXX = `$(WX_CONFIG) --cxx` | ||||
|  | ||||
| # Standard flags for C++  | ||||
| CXXFLAGS ?=  | ||||
| @@ -26,19 +26,16 @@ LDFLAGS ?= | ||||
| WX_CONFIG ?= wx-config | ||||
|  | ||||
| # Port of the wx library to build against [gtk1,gtk2,msw,x11,motif,mgl,mac,dfb] | ||||
| WX_PORT ?= $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 1) | ||||
| WX_PORT ?= $(shell $(WX_CONFIG) --query-toolkit) | ||||
|  | ||||
| # Use DLL build of wx library to use? [0,1] | ||||
| WX_SHARED ?= $(shell if test -z `$(WX_CONFIG) --selected-config | cut -d '-' -f 5`; then echo 1; else echo 0; fi) | ||||
| WX_SHARED ?= $(shell if test -z `$(WX_CONFIG) --query-linkage`; then echo 1; else echo 0; fi) | ||||
|  | ||||
| # Compile Unicode build of wxWidgets? [0,1] | ||||
| WX_UNICODE ?= $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 2 | sed 's/unicode/1/;s/ansi/0/') | ||||
|  | ||||
| # Use debug build of wxWidgets (define __WXDEBUG__)? [0,1] | ||||
| WX_DEBUG ?= $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 3 | sed 's/debug/1/;s/release/0/') | ||||
| WX_UNICODE ?= $(shell $(WX_CONFIG) --query-chartype | sed 's/unicode/1/;s/ansi/0/') | ||||
|  | ||||
| # Version of the wx library to build against.  | ||||
| WX_VERSION ?= $(shell $(WX_CONFIG) --selected-config | sed -e 's/.*-\([0-9]*\)\.\([0-9]*\)$$/\1\2/') | ||||
| WX_VERSION ?= $(shell $(WX_CONFIG) --query-version | sed -e 's/\([0-9]*\)\.\([0-9]*\)/\1\2/') | ||||
|  | ||||
|  | ||||
|  | ||||
| @@ -51,9 +48,8 @@ WX_VERSION ?= $(shell $(WX_CONFIG) --selected-config | sed -e 's/.*-\([0-9]*\)\. | ||||
| CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD -MP | ||||
| WX_VERSION_MAJOR = $(shell echo $(WX_VERSION) | cut -c1,1) | ||||
| WX_VERSION_MINOR = $(shell echo $(WX_VERSION) | cut -c2,2) | ||||
| WX_CONFIG_FLAGS = $(WX_CONFIG_DEBUG_FLAG) $(WX_CONFIG_UNICODE_FLAG) \ | ||||
| 	$(WX_CONFIG_SHARED_FLAG) --toolkit=$(WX_PORT) \ | ||||
| 	--version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR) | ||||
| WX_CONFIG_FLAGS = $(WX_CONFIG_UNICODE_FLAG) $(WX_CONFIG_SHARED_FLAG) \ | ||||
| 	--toolkit=$(WX_PORT) --version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR) | ||||
| HTMLPRINTING_CXXFLAGS = -I. `$(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)` \ | ||||
| 	$(CPPFLAGS) $(CXXFLAGS) | ||||
| HTMLPRINTING_OBJECTS =  \ | ||||
| @@ -61,12 +57,6 @@ HTMLPRINTING_OBJECTS =  \ | ||||
|  | ||||
| ### Conditionally set variables: ### | ||||
|  | ||||
| ifeq ($(WX_DEBUG),0) | ||||
| WX_CONFIG_DEBUG_FLAG = --debug=no | ||||
| endif | ||||
| ifeq ($(WX_DEBUG),1) | ||||
| WX_CONFIG_DEBUG_FLAG = --debug=yes | ||||
| endif | ||||
| ifeq ($(WX_UNICODE),0) | ||||
| WX_CONFIG_UNICODE_FLAG = --unicode=no | ||||
| endif | ||||
|   | ||||
| @@ -40,10 +40,10 @@ PORTNAME = base | ||||
| !if "$(USE_GUI)" == "1" | ||||
| PORTNAME = msw | ||||
| !endif | ||||
| !if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" | ||||
| !if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default" | ||||
| WXDEBUGFLAG = d | ||||
| !endif | ||||
| !if "$(DEBUG_FLAG)" == "1" | ||||
| !if "$(DEBUG_RUNTIME_LIBS)" == "1" | ||||
| WXDEBUGFLAG = d | ||||
| !endif | ||||
| !if "$(UNICODE)" == "1" | ||||
| @@ -199,17 +199,11 @@ __WXUNIV_DEFINE_p = /D__WXUNIVERSAL__ | ||||
| !if "$(WXUNIV)" == "1" | ||||
| __WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__ | ||||
| !endif | ||||
| !if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" | ||||
| __DEBUG_DEFINE_p = /D__WXDEBUG__ | ||||
| !if "$(DEBUG_FLAG)" == "0" | ||||
| __DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0 | ||||
| !endif | ||||
| !if "$(DEBUG_FLAG)" == "1" | ||||
| __DEBUG_DEFINE_p = /D__WXDEBUG__ | ||||
| !endif | ||||
| !if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" | ||||
| __DEBUG_DEFINE_p_1 = /d __WXDEBUG__ | ||||
| !endif | ||||
| !if "$(DEBUG_FLAG)" == "1" | ||||
| __DEBUG_DEFINE_p_1 = /d __WXDEBUG__ | ||||
| !if "$(DEBUG_FLAG)" == "0" | ||||
| __DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0 | ||||
| !endif | ||||
| !if "$(USE_EXCEPTIONS)" == "0" | ||||
| __EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS | ||||
|   | ||||
| @@ -40,11 +40,6 @@ PORTNAME = msw | ||||
| !endif | ||||
| WXDEBUGFLAG = | ||||
| !ifeq BUILD debug | ||||
| !ifeq DEBUG_FLAG default | ||||
| WXDEBUGFLAG = d | ||||
| !endif | ||||
| !endif | ||||
| !ifeq DEBUG_FLAG 1 | ||||
| WXDEBUGFLAG = d | ||||
| !endif | ||||
| WXUNICODEFLAG = | ||||
| @@ -183,13 +178,8 @@ __WXUNIV_DEFINE_p = | ||||
| __WXUNIV_DEFINE_p = -d__WXUNIVERSAL__ | ||||
| !endif | ||||
| __DEBUG_DEFINE_p = | ||||
| !ifeq BUILD debug | ||||
| !ifeq DEBUG_FLAG default | ||||
| __DEBUG_DEFINE_p = -d__WXDEBUG__ | ||||
| !endif | ||||
| !endif | ||||
| !ifeq DEBUG_FLAG 1 | ||||
| __DEBUG_DEFINE_p = -d__WXDEBUG__ | ||||
| !ifeq DEBUG_FLAG 0 | ||||
| __DEBUG_DEFINE_p = -dwxDEBUG_LEVEL=0 | ||||
| !endif | ||||
| __EXCEPTIONS_DEFINE_p = | ||||
| !ifeq USE_EXCEPTIONS 0 | ||||
|   | ||||
| @@ -72,12 +72,12 @@ LINK32=link.exe | ||||
| # PROP Output_Dir "vc_mswunivuddll" | ||||
| # PROP Intermediate_Dir "vc_mswunivuddll\htmlprinting" | ||||
| # PROP Target_Dir "" | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswunivuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswunivuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswunivud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswunivud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswunivuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswunivuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswunivud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswunivud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| BSC32=bscmake.exe | ||||
| # ADD BASE BSC32 /nologo | ||||
| # ADD BSC32 /nologo | ||||
| @@ -122,12 +122,12 @@ LINK32=link.exe | ||||
| # PROP Output_Dir "vc_mswuddll" | ||||
| # PROP Intermediate_Dir "vc_mswuddll\htmlprinting" | ||||
| # PROP Target_Dir "" | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswuddll\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_dll\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "WXUSINGDLL" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "_UNICODE" /i ".\..\..\..\lib\vc_dll\mswud" /i ".\..\..\..\include" /i "." /d "WXUSINGDLL" /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| BSC32=bscmake.exe | ||||
| # ADD BASE BSC32 /nologo | ||||
| # ADD BSC32 /nologo | ||||
| @@ -172,12 +172,12 @@ LINK32=link.exe | ||||
| # PROP Output_Dir "vc_mswunivud" | ||||
| # PROP Intermediate_Dir "vc_mswunivud\htmlprinting" | ||||
| # PROP Target_Dir "" | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswunivud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswunivud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswunivud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswunivud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswunivud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswunivud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswunivud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXUNIVERSAL__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswunivud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXUNIVERSAL__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswunivud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| BSC32=bscmake.exe | ||||
| # ADD BASE BSC32 /nologo | ||||
| # ADD BSC32 /nologo | ||||
| @@ -222,12 +222,12 @@ LINK32=link.exe | ||||
| # PROP Output_Dir "vc_mswud" | ||||
| # PROP Intermediate_Dir "vc_mswud\htmlprinting" | ||||
| # PROP Target_Dir "" | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "__WXDEBUG__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "__WXDEBUG__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD BASE CPP /nologo /FD /MDd /Zi /Fdvc_mswud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD CPP /nologo /FD /MDd /Zi /Fdvc_mswud\htmlprinting.pdb /Od /Gm /GR /EHsc /I ".\..\..\..\lib\vc_lib\mswud" /I ".\..\..\..\include" /W4 /I "." /I ".\..\..\..\samples" /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /c | ||||
| # ADD BASE MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD MTL /nologo /D "WIN32" /D "_DEBUG" /D "__WXMSW__" /D "_UNICODE" /D "_WINDOWS" /D "NOPCH" /mktyplib203 /win32 | ||||
| # ADD BASE RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| # ADD RSC /l 0x409 /d "_DEBUG" /d "__WXMSW__" /d "_UNICODE" /i ".\..\..\..\lib\vc_lib\mswud" /i ".\..\..\..\include" /i "." /d "_WINDOWS" /i ".\..\..\..\samples" /d NOPCH | ||||
| BSC32=bscmake.exe | ||||
| # ADD BASE BSC32 /nologo | ||||
| # ADD BSC32 /nologo | ||||
|   | ||||
| @@ -28,7 +28,7 @@ | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="TRUE" | ||||
| 				ExceptionHandling="TRUE" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -57,7 +57,7 @@ | ||||
| 				TargetMachine="1"/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
| 				Name="VCPostBuildEventTool"/> | ||||
| @@ -67,7 +67,7 @@ | ||||
| 				Name="VCPreLinkEventTool"/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
| @@ -155,7 +155,7 @@ | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="TRUE" | ||||
| 				ExceptionHandling="TRUE" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -184,7 +184,7 @@ | ||||
| 				TargetMachine="1"/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
| 				Name="VCPostBuildEventTool"/> | ||||
| @@ -194,7 +194,7 @@ | ||||
| 				Name="VCPreLinkEventTool"/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
| @@ -282,7 +282,7 @@ | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="TRUE" | ||||
| 				ExceptionHandling="TRUE" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -311,7 +311,7 @@ | ||||
| 				TargetMachine="1"/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
| 				Name="VCPostBuildEventTool"/> | ||||
| @@ -321,7 +321,7 @@ | ||||
| 				Name="VCPreLinkEventTool"/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
| @@ -409,7 +409,7 @@ | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="TRUE" | ||||
| 				ExceptionHandling="TRUE" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -438,7 +438,7 @@ | ||||
| 				TargetMachine="1"/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
| 				Name="VCPostBuildEventTool"/> | ||||
| @@ -448,7 +448,7 @@ | ||||
| 				Name="VCPreLinkEventTool"/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples"/> | ||||
| 			<Tool | ||||
|   | ||||
| @@ -44,14 +44,14 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="true" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -70,7 +70,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| @@ -235,14 +235,14 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="true" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -261,7 +261,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| @@ -426,14 +426,14 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="true" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -452,7 +452,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| @@ -617,14 +617,14 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCMIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCCLCompilerTool" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				MinimalRebuild="true" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| @@ -643,7 +643,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
|   | ||||
| @@ -44,7 +44,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| @@ -52,7 +52,7 @@ | ||||
| 				AdditionalOptions="/MP" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| 				RuntimeLibrary="3" | ||||
| @@ -69,7 +69,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| @@ -228,7 +228,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| @@ -236,7 +236,7 @@ | ||||
| 				AdditionalOptions="/MP" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| 				RuntimeLibrary="3" | ||||
| @@ -253,7 +253,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| @@ -412,7 +412,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| @@ -420,7 +420,7 @@ | ||||
| 				AdditionalOptions="/MP" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| 				RuntimeLibrary="3" | ||||
| @@ -437,7 +437,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| @@ -596,7 +596,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCIDLTool" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
| 			<Tool | ||||
| @@ -604,7 +604,7 @@ | ||||
| 				AdditionalOptions="/MP" | ||||
| 				Optimization="0" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				ExceptionHandling="1" | ||||
| 				BasicRuntimeChecks="3" | ||||
| 				RuntimeLibrary="3" | ||||
| @@ -621,7 +621,7 @@ | ||||
| 			/> | ||||
| 			<Tool | ||||
| 				Name="VCResourceCompilerTool" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;__WXDEBUG__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				PreprocessorDefinitions="_DEBUG;__WXMSW__;__WXUNIVERSAL__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH" | ||||
| 				Culture="1033" | ||||
| 				AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswunivud;.\..\..\..\include;.;.\..\..\..\samples" | ||||
| 			/> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user