From: Francesco M. <fr...@us...> - 2006-01-23 19:38:42
|
Update of /cvsroot/wxlua/wxLua/util/build/msw In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24398/util/build/msw Modified Files: makefile.bcc makefile.gcc makefile.vc makefile.wat util.dsp Log Message: updated bakefiles Index: makefile.vc =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.vc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** makefile.vc 23 Nov 2005 06:03:40 -0000 1.5 --- makefile.vc 23 Jan 2006 19:38:30 -0000 1.6 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 24,33 **** --- 24,37 ---- # Use DLL build of wx library to use? [0,1] + # 1 - DLL WX_SHARED = 0 # Compile Unicode build of wxWidgets? [0,1] + # 1 - Unicode WX_UNICODE = 0 # Use debug build of wxWidgets (define __WXDEBUG__)? [0,1] + # 0 - Release + # 1 - Debug WX_DEBUG = 1 *************** *** 45,49 **** UTIL_BIN2C_CFLAGS = /MD /DWIN32 $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = \ ! msvc\util_bin2c_bin2c.obj ### Conditionally set variables: ### --- 49,53 ---- UTIL_BIN2C_CFLAGS = /MD /DWIN32 $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = \ ! msvc$(WXLIBPOSTFIX)\util_bin2c_bin2c.obj ### Conditionally set variables: ### *************** *** 52,60 **** __util_bin2c___depname = ..\..\..\bin\bin2c.exe !endif ! all: msvc ! msvc: ! -if not exist msvc mkdir msvc ### Targets: ### --- 56,73 ---- __util_bin2c___depname = ..\..\..\bin\bin2c.exe !endif + !if "$(WX_DEBUG)" == "0" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = u + !endif + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "0" + WXLIBPOSTFIX = d + !endif + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = ud + !endif ! all: msvc$(WXLIBPOSTFIX) ! msvc$(WXLIBPOSTFIX): ! -if not exist msvc$(WXLIBPOSTFIX) mkdir msvc$(WXLIBPOSTFIX) ### Targets: ### *************** *** 63,69 **** clean: ! -if exist msvc\*.obj del msvc\*.obj ! -if exist msvc\*.res del msvc\*.res ! -if exist msvc\*.pch del msvc\*.pch -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe -if exist ..\..\..\bin\bin2c.ilk del ..\..\..\bin\bin2c.ilk --- 76,82 ---- clean: ! -if exist msvc$(WXLIBPOSTFIX)\*.obj del msvc$(WXLIBPOSTFIX)\*.obj ! -if exist msvc$(WXLIBPOSTFIX)\*.res del msvc$(WXLIBPOSTFIX)\*.res ! -if exist msvc$(WXLIBPOSTFIX)\*.pch del msvc$(WXLIBPOSTFIX)\*.pch -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe -if exist ..\..\..\bin\bin2c.ilk del ..\..\..\bin\bin2c.ilk *************** *** 77,81 **** !endif ! msvc\util_bin2c_bin2c.obj: ..\..\bin2c\bin2c.c $(CC) /c /nologo /TC /Fo$@ $(UTIL_BIN2C_CFLAGS) $** --- 90,94 ---- !endif ! msvc$(WXLIBPOSTFIX)\util_bin2c_bin2c.obj: ..\..\bin2c\bin2c.c $(CC) /c /nologo /TC /Fo$@ $(UTIL_BIN2C_CFLAGS) $** Index: makefile.bcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.bcc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** makefile.bcc 23 Nov 2005 06:03:40 -0000 1.5 --- makefile.bcc 23 Jan 2006 19:38:30 -0000 1.6 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 70,74 **** UTIL_BIN2C_CFLAGS = -I$(BCCDIR)\include $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = \ ! borland\util_bin2c_bin2c.obj ### Conditionally set variables: ### --- 70,74 ---- UTIL_BIN2C_CFLAGS = -I$(BCCDIR)\include $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = \ ! borland$(WXLIBPOSTFIX)\util_bin2c_bin2c.obj ### Conditionally set variables: ### *************** *** 77,85 **** __util_bin2c___depname = ..\..\..\bin\bin2c.exe !endif ! all: borland ! borland: ! -if not exist borland mkdir borland ### Targets: ### --- 77,94 ---- __util_bin2c___depname = ..\..\..\bin\bin2c.exe !endif + !if "$(WX_DEBUG)" == "0" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = u + !endif + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "0" + WXLIBPOSTFIX = d + !endif + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = ud + !endif ! all: borland$(WXLIBPOSTFIX) ! borland$(WXLIBPOSTFIX): ! -if not exist borland$(WXLIBPOSTFIX) mkdir borland$(WXLIBPOSTFIX) ### Targets: ### *************** *** 88,94 **** clean: ! -if exist borland\*.obj del borland\*.obj ! -if exist borland\*.res del borland\*.res ! -if exist borland\*.csm del borland\*.csm -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe -if exist ..\..\..\bin\bin2c.tds del ..\..\..\bin\bin2c.tds --- 97,103 ---- clean: ! -if exist borland$(WXLIBPOSTFIX)\*.obj del borland$(WXLIBPOSTFIX)\*.obj ! -if exist borland$(WXLIBPOSTFIX)\*.res del borland$(WXLIBPOSTFIX)\*.res ! -if exist borland$(WXLIBPOSTFIX)\*.csm del borland$(WXLIBPOSTFIX)\*.csm -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe -if exist ..\..\..\bin\bin2c.tds del ..\..\..\bin\bin2c.tds *************** *** 105,109 **** !endif ! borland\util_bin2c_bin2c.obj: ..\..\bin2c\bin2c.c $(CC) -q -c -P- -o$@ $(UTIL_BIN2C_CFLAGS) $** --- 114,118 ---- !endif ! borland$(WXLIBPOSTFIX)\util_bin2c_bin2c.obj: ..\..\bin2c\bin2c.c $(CC) -q -c -P- -o$@ $(UTIL_BIN2C_CFLAGS) $** Index: makefile.gcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.gcc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** makefile.gcc 23 Nov 2005 06:03:40 -0000 1.5 --- makefile.gcc 23 Jan 2006 19:38:30 -0000 1.6 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 46,50 **** UTIL_BIN2C_CFLAGS = $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = \ ! mingw\util_bin2c_bin2c.o ### Conditionally set variables: ### --- 46,50 ---- UTIL_BIN2C_CFLAGS = $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = \ ! mingw$(WXLIBPOSTFIX)\util_bin2c_bin2c.o ### Conditionally set variables: ### *************** *** 53,61 **** __util_bin2c___depname = ..\..\..\bin\bin2c.exe endif ! all: mingw ! mingw: ! -if not exist mingw mkdir mingw ### Targets: ### --- 53,76 ---- __util_bin2c___depname = ..\..\..\bin\bin2c.exe endif + ifeq ($(WX_DEBUG),0) + ifeq ($(WX_UNICODE),1) + WXLIBPOSTFIX = u + endif + endif + ifeq ($(WX_DEBUG),1) + ifeq ($(WX_UNICODE),0) + WXLIBPOSTFIX = d + endif + endif + ifeq ($(WX_DEBUG),1) + ifeq ($(WX_UNICODE),1) + WXLIBPOSTFIX = ud + endif + endif ! all: mingw$(WXLIBPOSTFIX) ! mingw$(WXLIBPOSTFIX): ! -if not exist mingw$(WXLIBPOSTFIX) mkdir mingw$(WXLIBPOSTFIX) ### Targets: ### *************** *** 64,69 **** clean: ! -if exist mingw\*.o del mingw\*.o ! -if exist mingw\*.d del mingw\*.d -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe --- 79,84 ---- clean: ! -if exist mingw$(WXLIBPOSTFIX)\*.o del mingw$(WXLIBPOSTFIX)\*.o ! -if exist mingw$(WXLIBPOSTFIX)\*.d del mingw$(WXLIBPOSTFIX)\*.d -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe *************** *** 73,77 **** endif ! mingw\util_bin2c_bin2c.o: ../../bin2c/bin2c.c $(CC) -c -o $@ $(UTIL_BIN2C_CFLAGS) $(CPPDEPS) $< --- 88,92 ---- endif ! mingw$(WXLIBPOSTFIX)\util_bin2c_bin2c.o: ../../bin2c/bin2c.c $(CC) -c -o $@ $(UTIL_BIN2C_CFLAGS) $(CPPDEPS) $< *************** *** 80,82 **** # Dependencies tracking: ! -include mingw/*.d --- 95,97 ---- # Dependencies tracking: ! -include mingw$(WXLIBPOSTFIX)/*.d Index: makefile.wat =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.wat,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** makefile.wat 23 Nov 2005 06:03:40 -0000 1.5 --- makefile.wat 23 Jan 2006 19:38:30 -0000 1.6 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 24,33 **** --- 24,37 ---- # Use DLL build of wx library to use? [0,1] + # 1 - DLL WX_SHARED = 0 # Compile Unicode build of wxWidgets? [0,1] + # 1 - Unicode WX_UNICODE = 0 # Use debug build of wxWidgets (define __WXDEBUG__)? [0,1] + # 0 - Release + # 1 - Debug WX_DEBUG = 1 *************** *** 62,65 **** --- 66,85 ---- __util_bin2c___depname = ..\..\..\bin\bin2c.exe !endif + WXLIBPOSTFIX = + !ifeq WX_DEBUG 0 + !ifeq WX_UNICODE 1 + WXLIBPOSTFIX = u + !endif + !endif + !ifeq WX_DEBUG 1 + !ifeq WX_UNICODE 0 + WXLIBPOSTFIX = d + !endif + !endif + !ifeq WX_DEBUG 1 + !ifeq WX_UNICODE 1 + WXLIBPOSTFIX = ud + !endif + !endif ### Variables: ### *************** *** 67,76 **** UTIL_BIN2C_CFLAGS = $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = & ! watcom\util_bin2c_bin2c.obj ! all : watcom ! watcom : ! -if not exist watcom mkdir watcom ### Targets: ### --- 87,96 ---- UTIL_BIN2C_CFLAGS = $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = & ! watcom$(WXLIBPOSTFIX)\util_bin2c_bin2c.obj ! all : watcom$(WXLIBPOSTFIX) ! watcom$(WXLIBPOSTFIX) : ! -if not exist watcom$(WXLIBPOSTFIX) mkdir watcom$(WXLIBPOSTFIX) ### Targets: ### *************** *** 79,103 **** clean : .SYMBOLIC ! -if exist watcom\*.obj del watcom\*.obj ! -if exist watcom\*.res del watcom\*.res ! -if exist watcom\*.lbc del watcom\*.lbc ! -if exist watcom\*.ilk del watcom\*.ilk ! -if exist watcom\*.pch del watcom\*.pch -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe !ifeq USE_BIN2C 1 ..\..\..\bin\bin2c.exe : $(UTIL_BIN2C_OBJECTS) ! @%create watcom\util_bin2c.lbc ! @%append watcom\util_bin2c.lbc option quiet ! @%append watcom\util_bin2c.lbc name $^@ ! @%append watcom\util_bin2c.lbc option caseexact ! @%append watcom\util_bin2c.lbc $(LDFLAGS) ! @for %i in ($(UTIL_BIN2C_OBJECTS)) do @%append watcom\util_bin2c.lbc file %i ! @for %i in () do @%append watcom\util_bin2c.lbc library %i ! @%append watcom\util_bin2c.lbc ! wlink @watcom\util_bin2c.lbc !endif ! watcom\util_bin2c_bin2c.obj : .AUTODEPEND ..\..\bin2c\bin2c.c ! $(CC) -zq -fo=$^@ $(UTIL_BIN2C_CFLAGS) $< --- 99,123 ---- clean : .SYMBOLIC ! -if exist watcom$(WXLIBPOSTFIX)\*.obj del watcom$(WXLIBPOSTFIX)\*.obj ! -if exist watcom$(WXLIBPOSTFIX)\*.res del watcom$(WXLIBPOSTFIX)\*.res ! -if exist watcom$(WXLIBPOSTFIX)\*.lbc del watcom$(WXLIBPOSTFIX)\*.lbc ! -if exist watcom$(WXLIBPOSTFIX)\*.ilk del watcom$(WXLIBPOSTFIX)\*.ilk ! -if exist watcom$(WXLIBPOSTFIX)\*.pch del watcom$(WXLIBPOSTFIX)\*.pch -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe !ifeq USE_BIN2C 1 ..\..\..\bin\bin2c.exe : $(UTIL_BIN2C_OBJECTS) ! @%create watcom$(WXLIBPOSTFIX)\util_bin2c.lbc ! @%append watcom$(WXLIBPOSTFIX)\util_bin2c.lbc option quiet ! @%append watcom$(WXLIBPOSTFIX)\util_bin2c.lbc name $^@ ! @%append watcom$(WXLIBPOSTFIX)\util_bin2c.lbc option caseexact ! @%append watcom$(WXLIBPOSTFIX)\util_bin2c.lbc $(LDFLAGS) ! @for %i in ($(UTIL_BIN2C_OBJECTS)) do @%append watcom$(WXLIBPOSTFIX)\util_bin2c.lbc file %i ! @for %i in () do @%append watcom$(WXLIBPOSTFIX)\util_bin2c.lbc library %i ! @%append watcom$(WXLIBPOSTFIX)\util_bin2c.lbc ! wlink @watcom$(WXLIBPOSTFIX)\util_bin2c.lbc !endif ! watcom$(WXLIBPOSTFIX)\util_bin2c_bin2c.obj : .AUTODEPEND ..\..\bin2c\bin2c.c ! $(CC) -bt=nt -zq -fo=$^@ $(UTIL_BIN2C_CFLAGS) $< Index: util.dsp =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/util.dsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** util.dsp 25 Nov 2005 22:29:08 -0000 1.3 --- util.dsp 23 Jan 2006 19:38:30 -0000 1.4 *************** *** 8,21 **** !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run ! !MESSAGE !MESSAGE NMAKE /f "util.mak". ! !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE !MESSAGE NMAKE /f "util.mak" CFG="util_bin2c - Win32 Release" ! !MESSAGE !MESSAGE Possible choices for configuration are: ! !MESSAGE !MESSAGE "util_bin2c - Win32 DLL Unicode Debug" (based on "Win32 (x86) Console Application") !MESSAGE "util_bin2c - Win32 DLL Unicode Release" (based on "Win32 (x86) Console Application") --- 8,21 ---- !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run ! !MESSAGE !MESSAGE NMAKE /f "util.mak". ! !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE !MESSAGE NMAKE /f "util.mak" CFG="util_bin2c - Win32 Release" ! !MESSAGE !MESSAGE Possible choices for configuration are: ! !MESSAGE !MESSAGE "util_bin2c - Win32 DLL Unicode Debug" (based on "Win32 (x86) Console Application") !MESSAGE "util_bin2c - Win32 DLL Unicode Release" (based on "Win32 (x86) Console Application") *************** *** 26,30 **** !MESSAGE "util_bin2c - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE "util_bin2c - Win32 Release" (based on "Win32 (x86) Console Application") ! !MESSAGE # Begin Project --- 26,30 ---- !MESSAGE "util_bin2c - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE "util_bin2c - Win32 Release" (based on "Win32 (x86) Console Application") ! !MESSAGE # Begin Project *************** *** 40,49 **** # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prj\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prj\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c --- 40,49 ---- # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prjud\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prjud\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c *************** *** 63,72 **** # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prj\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prj\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c --- 63,72 ---- # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prju\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prju\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c *************** *** 86,95 **** # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prj\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prj\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c --- 86,95 ---- # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prjd\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prjd\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c *************** *** 132,141 **** # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prj\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prj\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c --- 132,141 ---- # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prjud\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prjud\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c *************** *** 155,164 **** # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prj\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prj\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c --- 155,164 ---- # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prju\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prju\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c *************** *** 178,187 **** # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prj\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prj\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c --- 178,187 ---- # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "..\..\..\bin" ! # PROP BASE Intermediate_Dir "msvc6prjd\util_bin2c" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "..\..\..\bin" ! # PROP Intermediate_Dir "msvc6prjd\util_bin2c" # PROP Target_Dir "" # ADD BASE CPP /nologo /FD /MD /W1 /GR /EHsc /D "WIN32" /D "_CONSOLE" /c |