Normalize all the line endings.
This commit is contained in:
@@ -1,45 +1,45 @@
|
|||||||
/* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
|
/* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
|
||||||
/* see jconfig.doc for explanations */
|
/* see jconfig.doc for explanations */
|
||||||
|
|
||||||
#define HAVE_PROTOTYPES
|
#define HAVE_PROTOTYPES
|
||||||
#define HAVE_UNSIGNED_CHAR
|
#define HAVE_UNSIGNED_CHAR
|
||||||
#define HAVE_UNSIGNED_SHORT
|
#define HAVE_UNSIGNED_SHORT
|
||||||
/* #define void char */
|
/* #define void char */
|
||||||
/* #define const */
|
/* #define const */
|
||||||
#undef CHAR_IS_UNSIGNED
|
#undef CHAR_IS_UNSIGNED
|
||||||
#define HAVE_STDDEF_H
|
#define HAVE_STDDEF_H
|
||||||
#define HAVE_STDLIB_H
|
#define HAVE_STDLIB_H
|
||||||
#undef NEED_BSD_STRINGS
|
#undef NEED_BSD_STRINGS
|
||||||
#undef NEED_SYS_TYPES_H
|
#undef NEED_SYS_TYPES_H
|
||||||
#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
|
#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
|
||||||
#undef NEED_SHORT_EXTERNAL_NAMES
|
#undef NEED_SHORT_EXTERNAL_NAMES
|
||||||
#undef INCOMPLETE_TYPES_BROKEN
|
#undef INCOMPLETE_TYPES_BROKEN
|
||||||
|
|
||||||
/* Define "boolean" as unsigned char, not int, per Windows custom */
|
/* Define "boolean" as unsigned char, not int, per Windows custom */
|
||||||
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
|
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
|
||||||
typedef unsigned char boolean;
|
typedef unsigned char boolean;
|
||||||
#endif
|
#endif
|
||||||
#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
|
#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
|
||||||
|
|
||||||
|
|
||||||
#ifdef JPEG_INTERNALS
|
#ifdef JPEG_INTERNALS
|
||||||
|
|
||||||
#undef RIGHT_SHIFT_IS_UNSIGNED
|
#undef RIGHT_SHIFT_IS_UNSIGNED
|
||||||
|
|
||||||
#endif /* JPEG_INTERNALS */
|
#endif /* JPEG_INTERNALS */
|
||||||
|
|
||||||
#ifdef JPEG_CJPEG_DJPEG
|
#ifdef JPEG_CJPEG_DJPEG
|
||||||
|
|
||||||
#define BMP_SUPPORTED /* BMP image file format */
|
#define BMP_SUPPORTED /* BMP image file format */
|
||||||
#define GIF_SUPPORTED /* GIF image file format */
|
#define GIF_SUPPORTED /* GIF image file format */
|
||||||
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
|
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
|
||||||
#undef RLE_SUPPORTED /* Utah RLE image file format */
|
#undef RLE_SUPPORTED /* Utah RLE image file format */
|
||||||
#define TARGA_SUPPORTED /* Targa image file format */
|
#define TARGA_SUPPORTED /* Targa image file format */
|
||||||
|
|
||||||
#define TWO_FILE_COMMANDLINE /* optional */
|
#define TWO_FILE_COMMANDLINE /* optional */
|
||||||
#define USE_SETMODE /* Microsoft has setmode() */
|
#define USE_SETMODE /* Microsoft has setmode() */
|
||||||
#undef NEED_SIGNAL_CATCHER
|
#undef NEED_SIGNAL_CATCHER
|
||||||
#undef DONT_USE_B_MODE
|
#undef DONT_USE_B_MODE
|
||||||
#undef PROGRESS_REPORT /* optional */
|
#undef PROGRESS_REPORT /* optional */
|
||||||
|
|
||||||
#endif /* JPEG_CJPEG_DJPEG */
|
#endif /* JPEG_CJPEG_DJPEG */
|
||||||
|
|||||||
@@ -1,201 +1,201 @@
|
|||||||
# Makefile for Independent JPEG Group's software
|
# Makefile for Independent JPEG Group's software
|
||||||
|
|
||||||
# This makefile is for Microsoft Visual C++ on Windows NT (and 95?).
|
# This makefile is for Microsoft Visual C++ on Windows NT (and 95?).
|
||||||
# It builds the IJG library as a statically linkable library (.LIB),
|
# It builds the IJG library as a statically linkable library (.LIB),
|
||||||
# and builds the sample applications as console-mode apps.
|
# and builds the sample applications as console-mode apps.
|
||||||
# Thanks to Xingong Chang, Raymond Everly and others.
|
# Thanks to Xingong Chang, Raymond Everly and others.
|
||||||
|
|
||||||
# Read installation instructions before saying "nmake" !!
|
# Read installation instructions before saying "nmake" !!
|
||||||
# To build an optimized library without debug info, say "nmake nodebug=1".
|
# To build an optimized library without debug info, say "nmake nodebug=1".
|
||||||
|
|
||||||
# Put here the object file name for the correct system-dependent memory
|
# Put here the object file name for the correct system-dependent memory
|
||||||
# manager file. For NT we suggest jmemnobs.obj, which expects the OS to
|
# manager file. For NT we suggest jmemnobs.obj, which expects the OS to
|
||||||
# provide adequate virtual memory.
|
# provide adequate virtual memory.
|
||||||
SYSDEPMEM= $D\jmemnobs.obj
|
SYSDEPMEM= $D\jmemnobs.obj
|
||||||
|
|
||||||
# miscellaneous OS-dependent stuff
|
# miscellaneous OS-dependent stuff
|
||||||
# file deletion command
|
# file deletion command
|
||||||
!if "$(RM)" == ""
|
!if "$(RM)" == ""
|
||||||
RM= erase
|
RM= erase
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
# End of configurable options.
|
# End of configurable options.
|
||||||
|
|
||||||
# source files: JPEG library proper
|
# source files: JPEG library proper
|
||||||
LIBSOURCES= jcapimin.c \
|
LIBSOURCES= jcapimin.c \
|
||||||
jcapistd.c \
|
jcapistd.c \
|
||||||
jccoefct.c \
|
jccoefct.c \
|
||||||
jccolor.c \
|
jccolor.c \
|
||||||
jcdctmgr.c \
|
jcdctmgr.c \
|
||||||
jchuff.c \
|
jchuff.c \
|
||||||
jcinit.c \
|
jcinit.c \
|
||||||
jcmainct.c \
|
jcmainct.c \
|
||||||
jcmarker.c \
|
jcmarker.c \
|
||||||
jcmaster.c \
|
jcmaster.c \
|
||||||
jcomapi.c \
|
jcomapi.c \
|
||||||
jcparam.c \
|
jcparam.c \
|
||||||
jcphuff.c \
|
jcphuff.c \
|
||||||
jcprepct.c \
|
jcprepct.c \
|
||||||
jcsample.c \
|
jcsample.c \
|
||||||
jctrans.c \
|
jctrans.c \
|
||||||
jdapimin.c \
|
jdapimin.c \
|
||||||
jdapistd.c \
|
jdapistd.c \
|
||||||
jdatadst.c \
|
jdatadst.c \
|
||||||
jdatasrc.c \
|
jdatasrc.c \
|
||||||
jdcoefct.c \
|
jdcoefct.c \
|
||||||
jdcolor.c \
|
jdcolor.c \
|
||||||
jddctmgr.c \
|
jddctmgr.c \
|
||||||
jdhuff.c \
|
jdhuff.c \
|
||||||
jdinput.c \
|
jdinput.c \
|
||||||
jdmainct.c \
|
jdmainct.c \
|
||||||
jdmarker.c \
|
jdmarker.c \
|
||||||
jdmaster.c \
|
jdmaster.c \
|
||||||
jdmerge.c \
|
jdmerge.c \
|
||||||
jdphuff.c \
|
jdphuff.c \
|
||||||
jdpostct.c \
|
jdpostct.c \
|
||||||
jdsample.c \
|
jdsample.c \
|
||||||
jdtrans.c \
|
jdtrans.c \
|
||||||
jerror.c \
|
jerror.c \
|
||||||
jfdctflt.c \
|
jfdctflt.c \
|
||||||
jfdctfst.c \
|
jfdctfst.c \
|
||||||
jfdctint.c \
|
jfdctint.c \
|
||||||
jidctflt.c \
|
jidctflt.c \
|
||||||
jidctfst.c \
|
jidctfst.c \
|
||||||
jidctint.c \
|
jidctint.c \
|
||||||
jidctred.c \
|
jidctred.c \
|
||||||
jquant1.c \
|
jquant1.c \
|
||||||
jquant2.c \
|
jquant2.c \
|
||||||
jutils.c \
|
jutils.c \
|
||||||
jmemmgr.c
|
jmemmgr.c
|
||||||
|
|
||||||
# memmgr back ends: compile only one of these into a working library
|
# memmgr back ends: compile only one of these into a working library
|
||||||
SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
|
SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
|
||||||
|
|
||||||
# source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
|
# source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
|
||||||
APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
|
APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
|
||||||
rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
|
rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
|
||||||
rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
|
rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
|
||||||
|
|
||||||
SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
|
SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
|
||||||
|
|
||||||
# files included by source files
|
# files included by source files
|
||||||
INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
|
INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
|
||||||
jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
|
jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
|
||||||
|
|
||||||
# documentation, test, and support files
|
# documentation, test, and support files
|
||||||
DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
|
DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
|
||||||
wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \
|
wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \
|
||||||
coderules.doc filelist.doc change.log
|
coderules.doc filelist.doc change.log
|
||||||
|
|
||||||
MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \
|
MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \
|
||||||
makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \
|
makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \
|
||||||
makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \
|
makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \
|
||||||
maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \
|
maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \
|
||||||
makvms.opt
|
makvms.opt
|
||||||
|
|
||||||
CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
|
CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
|
||||||
jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
|
jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
|
||||||
jconfig.vms
|
jconfig.vms
|
||||||
|
|
||||||
CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
|
CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
|
||||||
OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
|
OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
|
||||||
TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
|
TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
|
||||||
testimgp.jpg
|
testimgp.jpg
|
||||||
DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
|
DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
|
||||||
$(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
|
$(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
|
||||||
|
|
||||||
# library object files common to compression and decompression
|
# library object files common to compression and decompression
|
||||||
COMOBJECTS= $D\jcomapi.obj $D\jutils.obj $D\jerror.obj $D\jmemmgr.obj $(SYSDEPMEM)
|
COMOBJECTS= $D\jcomapi.obj $D\jutils.obj $D\jerror.obj $D\jmemmgr.obj $(SYSDEPMEM)
|
||||||
|
|
||||||
# compression library object files
|
# compression library object files
|
||||||
CLIBOBJECTS= $D\jcapimin.obj \
|
CLIBOBJECTS= $D\jcapimin.obj \
|
||||||
$D\jcapistd.obj \
|
$D\jcapistd.obj \
|
||||||
$D\jctrans.obj \
|
$D\jctrans.obj \
|
||||||
$D\jcparam.obj \
|
$D\jcparam.obj \
|
||||||
$D\jdatadst.obj \
|
$D\jdatadst.obj \
|
||||||
$D\jcinit.obj \
|
$D\jcinit.obj \
|
||||||
$D\jcmaster.obj \
|
$D\jcmaster.obj \
|
||||||
$D\jcmarker.obj \
|
$D\jcmarker.obj \
|
||||||
$D\jcmainct.obj \
|
$D\jcmainct.obj \
|
||||||
$D\jcprepct.obj \
|
$D\jcprepct.obj \
|
||||||
$D\jccoefct.obj \
|
$D\jccoefct.obj \
|
||||||
$D\jccolor.obj \
|
$D\jccolor.obj \
|
||||||
$D\jcsample.obj \
|
$D\jcsample.obj \
|
||||||
$D\jchuff.obj \
|
$D\jchuff.obj \
|
||||||
$D\jcphuff.obj \
|
$D\jcphuff.obj \
|
||||||
$D\jcdctmgr.obj \
|
$D\jcdctmgr.obj \
|
||||||
$D\jfdctfst.obj \
|
$D\jfdctfst.obj \
|
||||||
$D\jfdctflt.obj \
|
$D\jfdctflt.obj \
|
||||||
$D\jfdctint.obj
|
$D\jfdctint.obj
|
||||||
|
|
||||||
# decompression library object files
|
# decompression library object files
|
||||||
DLIBOBJECTS= $D\jdapimin.obj \
|
DLIBOBJECTS= $D\jdapimin.obj \
|
||||||
$D\jdapistd.obj \
|
$D\jdapistd.obj \
|
||||||
$D\jdtrans.obj \
|
$D\jdtrans.obj \
|
||||||
$D\jdatasrc.obj \
|
$D\jdatasrc.obj \
|
||||||
$D\jdmaster.obj \
|
$D\jdmaster.obj \
|
||||||
$D\jdinput.obj \
|
$D\jdinput.obj \
|
||||||
$D\jdmarker.obj \
|
$D\jdmarker.obj \
|
||||||
$D\jdhuff.obj \
|
$D\jdhuff.obj \
|
||||||
$D\jdphuff.obj \
|
$D\jdphuff.obj \
|
||||||
$D\jdmainct.obj \
|
$D\jdmainct.obj \
|
||||||
$D\jdcoefct.obj \
|
$D\jdcoefct.obj \
|
||||||
$D\jdpostct.obj \
|
$D\jdpostct.obj \
|
||||||
$D\jddctmgr.obj \
|
$D\jddctmgr.obj \
|
||||||
$D\jidctfst.obj \
|
$D\jidctfst.obj \
|
||||||
$D\jidctflt.obj \
|
$D\jidctflt.obj \
|
||||||
$D\jidctint.obj \
|
$D\jidctint.obj \
|
||||||
$D\jidctred.obj \
|
$D\jidctred.obj \
|
||||||
$D\jdsample.obj \
|
$D\jdsample.obj \
|
||||||
$D\jdcolor.obj \
|
$D\jdcolor.obj \
|
||||||
$D\jquant1.obj \
|
$D\jquant1.obj \
|
||||||
$D\jquant2.obj \
|
$D\jquant2.obj \
|
||||||
$D\jdmerge.obj
|
$D\jdmerge.obj
|
||||||
# These objectfiles are included in libjpeg.lib
|
# These objectfiles are included in libjpeg.lib
|
||||||
OBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
|
OBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
|
||||||
|
|
||||||
# object files for sample applications (excluding library files)
|
# object files for sample applications (excluding library files)
|
||||||
COBJECTS= $D\cjpeg.obj \
|
COBJECTS= $D\cjpeg.obj \
|
||||||
$D\rdppm.obj \
|
$D\rdppm.obj \
|
||||||
$D\rdgif.obj \
|
$D\rdgif.obj \
|
||||||
$D\rdtarga.obj \
|
$D\rdtarga.obj \
|
||||||
$D\rdrle.obj \
|
$D\rdrle.obj \
|
||||||
$D\rdbmp.obj \
|
$D\rdbmp.obj \
|
||||||
$D\rdswitch.obj \
|
$D\rdswitch.obj \
|
||||||
$D\cdjpeg.obj
|
$D\cdjpeg.obj
|
||||||
|
|
||||||
DOBJECTS= $D\djpeg.obj \
|
DOBJECTS= $D\djpeg.obj \
|
||||||
$D\wrppm.obj \
|
$D\wrppm.obj \
|
||||||
$D\wrgif.obj \
|
$D\wrgif.obj \
|
||||||
$D\wrtarga.obj \
|
$D\wrtarga.obj \
|
||||||
$D\wrrle.obj \
|
$D\wrrle.obj \
|
||||||
$D\wrbmp.obj \
|
$D\wrbmp.obj \
|
||||||
$D\rdcolmap.obj \
|
$D\rdcolmap.obj \
|
||||||
$D\cdjpeg.obj
|
$D\cdjpeg.obj
|
||||||
|
|
||||||
TROBJECTS= $D\jpegtran.obj \
|
TROBJECTS= $D\jpegtran.obj \
|
||||||
$D\rdswitch.obj \
|
$D\rdswitch.obj \
|
||||||
$D\cdjpeg.obj \
|
$D\cdjpeg.obj \
|
||||||
$D\transupp.obj
|
$D\transupp.obj
|
||||||
|
|
||||||
!if "$(FINAL)" == "1"
|
!if "$(FINAL)" == "1"
|
||||||
LIBTARGET=..\..\lib\jpeg.lib
|
LIBTARGET=..\..\lib\jpeg.lib
|
||||||
!else if "$(FINAL)" == "hybrid"
|
!else if "$(FINAL)" == "hybrid"
|
||||||
LIBTARGET=..\..\lib\jpegh.lib
|
LIBTARGET=..\..\lib\jpegh.lib
|
||||||
!else
|
!else
|
||||||
LIBTARGET=..\..\lib\jpegd.lib
|
LIBTARGET=..\..\lib\jpegd.lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
# Note: we have to put this first, to override the default definition
|
# Note: we have to put this first, to override the default definition
|
||||||
# which doesn't work because there are too many files on the command line.
|
# which doesn't work because there are too many files on the command line.
|
||||||
# This means that we must explicitly use the 'all' target when making
|
# This means that we must explicitly use the 'all' target when making
|
||||||
# jpeg.lib, because of the ordering of targets.
|
# jpeg.lib, because of the ordering of targets.
|
||||||
|
|
||||||
defaulttarget:
|
defaulttarget:
|
||||||
echo Please use the 'all' target for this makefile.
|
echo Please use the 'all' target for this makefile.
|
||||||
|
|
||||||
|
|
||||||
# Pull in standard variable definitions
|
# Pull in standard variable definitions
|
||||||
|
|
||||||
!include ..\makelib.vc
|
!include ..\makelib.vc
|
||||||
|
|
||||||
|
|||||||
@@ -1,60 +1,60 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpng", "libpng.vcproj", "{0008960E-E0DD-41A6-8265-00B31DDB4C21}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpng", "libpng.vcproj", "{0008960E-E0DD-41A6-8265-00B31DDB4C21}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0} = {2D4F8105-7D21-454C-9932-B47CAB71A5C0}
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0} = {2D4F8105-7D21-454C-9932-B47CAB71A5C0}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngtest", "pngtest.vcproj", "{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngtest", "pngtest.vcproj", "{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21} = {0008960E-E0DD-41A6-8265-00B31DDB4C21}
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21} = {0008960E-E0DD-41A6-8265-00B31DDB4C21}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "zlib.vcproj", "{2D4F8105-7D21-454C-9932-B47CAB71A5C0}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "zlib.vcproj", "{2D4F8105-7D21-454C-9932-B47CAB71A5C0}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfiguration) = preSolution
|
GlobalSection(SolutionConfiguration) = preSolution
|
||||||
DLL Debug = DLL Debug
|
DLL Debug = DLL Debug
|
||||||
DLL Release = DLL Release
|
DLL Release = DLL Release
|
||||||
DLL VB = DLL VB
|
DLL VB = DLL VB
|
||||||
LIB Debug = LIB Debug
|
LIB Debug = LIB Debug
|
||||||
LIB Release = LIB Release
|
LIB Release = LIB Release
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfiguration) = postSolution
|
GlobalSection(ProjectConfiguration) = postSolution
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Debug.ActiveCfg = DLL Debug|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Debug.ActiveCfg = DLL Debug|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Debug.Build.0 = DLL Debug|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Debug.Build.0 = DLL Debug|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Release.ActiveCfg = DLL Release|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Release.ActiveCfg = DLL Release|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Release.Build.0 = DLL Release|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL Release.Build.0 = DLL Release|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL VB.ActiveCfg = DLL VB|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL VB.ActiveCfg = DLL VB|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL VB.Build.0 = DLL VB|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.DLL VB.Build.0 = DLL VB|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Debug.ActiveCfg = LIB Debug|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Debug.ActiveCfg = LIB Debug|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Debug.Build.0 = LIB Debug|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Debug.Build.0 = LIB Debug|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Release.ActiveCfg = LIB Release|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Release.ActiveCfg = LIB Release|Win32
|
||||||
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Release.Build.0 = LIB Release|Win32
|
{0008960E-E0DD-41A6-8265-00B31DDB4C21}.LIB Release.Build.0 = LIB Release|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Debug.ActiveCfg = DLL Debug|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Debug.ActiveCfg = DLL Debug|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Debug.Build.0 = DLL Debug|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Debug.Build.0 = DLL Debug|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Release.ActiveCfg = DLL Release|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Release.ActiveCfg = DLL Release|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Release.Build.0 = DLL Release|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL Release.Build.0 = DLL Release|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL VB.ActiveCfg = DLL VB|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL VB.ActiveCfg = DLL VB|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL VB.Build.0 = DLL VB|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.DLL VB.Build.0 = DLL VB|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Debug.ActiveCfg = LIB Debug|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Debug.ActiveCfg = LIB Debug|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Debug.Build.0 = LIB Debug|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Debug.Build.0 = LIB Debug|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Release.ActiveCfg = LIB Release|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Release.ActiveCfg = LIB Release|Win32
|
||||||
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Release.Build.0 = LIB Release|Win32
|
{FD1C2F86-9EEF-47BD-95A4-530917E17FDA}.LIB Release.Build.0 = LIB Release|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Debug.ActiveCfg = DLL Debug|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Debug.ActiveCfg = DLL Debug|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Debug.Build.0 = DLL Debug|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Debug.Build.0 = DLL Debug|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Release.ActiveCfg = DLL Release|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Release.ActiveCfg = DLL Release|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Release.Build.0 = DLL Release|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL Release.Build.0 = DLL Release|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL VB.ActiveCfg = DLL Release|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL VB.ActiveCfg = DLL Release|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL VB.Build.0 = DLL Release|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.DLL VB.Build.0 = DLL Release|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Debug.ActiveCfg = LIB Debug|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Debug.ActiveCfg = LIB Debug|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Debug.Build.0 = LIB Debug|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Debug.Build.0 = LIB Debug|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Release.ActiveCfg = LIB Release|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Release.ActiveCfg = LIB Release|Win32
|
||||||
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Release.Build.0 = LIB Release|Win32
|
{2D4F8105-7D21-454C-9932-B47CAB71A5C0}.LIB Release.Build.0 = LIB Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|||||||
@@ -1,419 +1,419 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="libpng"
|
Name="libpng"
|
||||||
RootNamespace="libpng">
|
RootNamespace="libpng">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_Release"
|
OutputDirectory=".\Win32_DLL_Release"
|
||||||
IntermediateDirectory=".\Win32_DLL_Release"
|
IntermediateDirectory=".\Win32_DLL_Release"
|
||||||
ConfigurationType="2">
|
ConfigurationType="2">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;PNG_BUILD_DLL;ZLIB_DLL;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;NDEBUG;PNG_BUILD_DLL;ZLIB_DLL;_CRT_SECURE_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
UsePrecompiledHeader="3"
|
UsePrecompiledHeader="3"
|
||||||
PrecompiledHeaderThrough="pngpriv.h"
|
PrecompiledHeaderThrough="pngpriv.h"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/libpng16.dll"
|
OutputFile="$(OutDir)/libpng16.dll"
|
||||||
LinkIncremental="1"/>
|
LinkIncremental="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="NDEBUG"
|
PreprocessorDefinitions="NDEBUG"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib;$(IntDir)"/>
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib;$(IntDir)"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_Debug"
|
OutputDirectory=".\Win32_DLL_Debug"
|
||||||
IntermediateDirectory=".\Win32_DLL_Debug"
|
IntermediateDirectory=".\Win32_DLL_Debug"
|
||||||
ConfigurationType="2">
|
ConfigurationType="2">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;DEBUG;PNG_DEBUG=1;PNG_BUILD_DLL;ZLIB_DLL;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;_DEBUG;DEBUG;PNG_DEBUG=1;PNG_BUILD_DLL;ZLIB_DLL;_CRT_SECURE_NO_WARNINGS"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
UsePrecompiledHeader="3"
|
UsePrecompiledHeader="3"
|
||||||
PrecompiledHeaderThrough="pngpriv.h"
|
PrecompiledHeaderThrough="pngpriv.h"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/libpng16d.dll"
|
OutputFile="$(OutDir)/libpng16d.dll"
|
||||||
GenerateDebugInformation="TRUE"/>
|
GenerateDebugInformation="TRUE"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG,PNG_DEBUG=1"
|
PreprocessorDefinitions="_DEBUG,PNG_DEBUG=1"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib;$(IntDir)"/>
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib;$(IntDir)"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL VB|Win32"
|
Name="DLL VB|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_VB"
|
OutputDirectory=".\Win32_DLL_VB"
|
||||||
IntermediateDirectory=".\Win32_DLL_VB"
|
IntermediateDirectory=".\Win32_DLL_VB"
|
||||||
ConfigurationType="2">
|
ConfigurationType="2">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;PNG_BUILD_DLL;ZLIB_DLL;PNGAPI=__stdcall;PNG_NO_MODULEDEF;PNG_LIBPNG_SPECIALBUILD;PNG_USER_PRIVATEBUILD;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;NDEBUG;PNG_BUILD_DLL;ZLIB_DLL;PNGAPI=__stdcall;PNG_NO_MODULEDEF;PNG_LIBPNG_SPECIALBUILD;PNG_USER_PRIVATEBUILD;_CRT_SECURE_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
UsePrecompiledHeader="3"
|
UsePrecompiledHeader="3"
|
||||||
PrecompiledHeaderThrough="pngpriv.h"
|
PrecompiledHeaderThrough="pngpriv.h"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/libpng16vb.dll"
|
OutputFile="$(OutDir)/libpng16vb.dll"
|
||||||
LinkIncremental="1"/>
|
LinkIncremental="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
AdditionalOptions="/d PNG_NO_PEDANTIC_WARNINGS /d PNG_LIBPNG_DLLFNAME_POSTFIX=""""VB"""" /d PNG_LIBPNG_SPECIALBUILD=""""__stdcall calling convention used for exported functions"""""
|
AdditionalOptions="/d PNG_NO_PEDANTIC_WARNINGS /d PNG_LIBPNG_DLLFNAME_POSTFIX=""""VB"""" /d PNG_LIBPNG_SPECIALBUILD=""""__stdcall calling convention used for exported functions"""""
|
||||||
PreprocessorDefinitions="NDEBUG"
|
PreprocessorDefinitions="NDEBUG"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib;$(IntDir)"/>
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib;$(IntDir)"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
OutputDirectory=".\Win32_LIB_Release"
|
OutputDirectory=".\Win32_LIB_Release"
|
||||||
IntermediateDirectory=".\Win32_LIB_Release"
|
IntermediateDirectory=".\Win32_LIB_Release"
|
||||||
ConfigurationType="4">
|
ConfigurationType="4">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="0"
|
RuntimeLibrary="0"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
UsePrecompiledHeader="3"
|
UsePrecompiledHeader="3"
|
||||||
PrecompiledHeaderThrough="pngpriv.h"
|
PrecompiledHeaderThrough="pngpriv.h"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)/libpng.lib"/>
|
OutputFile="$(OutDir)/libpng.lib"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
OutputDirectory=".\Win32_LIB_Debug"
|
OutputDirectory=".\Win32_LIB_Debug"
|
||||||
IntermediateDirectory=".\Win32_LIB_Debug"
|
IntermediateDirectory=".\Win32_LIB_Debug"
|
||||||
ConfigurationType="4">
|
ConfigurationType="4">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;DEBUG;PNG_DEBUG=1;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;_DEBUG;DEBUG;PNG_DEBUG=1;_CRT_SECURE_NO_WARNINGS"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="1"
|
RuntimeLibrary="1"
|
||||||
UsePrecompiledHeader="3"
|
UsePrecompiledHeader="3"
|
||||||
PrecompiledHeaderThrough="pngpriv.h"
|
PrecompiledHeaderThrough="pngpriv.h"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)/libpngd.lib"/>
|
OutputFile="$(OutDir)/libpngd.lib"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
CommandLine="copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
|
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\png.c">
|
RelativePath="..\..\png.c">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Release|Win32">
|
Name="DLL Release|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="0"/>
|
UsePrecompiledHeader="0"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Debug|Win32">
|
Name="DLL Debug|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="0"/>
|
UsePrecompiledHeader="0"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL VB|Win32">
|
Name="DLL VB|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="0"/>
|
UsePrecompiledHeader="0"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32">
|
Name="LIB Release|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="0"/>
|
UsePrecompiledHeader="0"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32">
|
Name="LIB Debug|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="0"/>
|
UsePrecompiledHeader="0"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngerror.c">
|
RelativePath="..\..\pngerror.c">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Release|Win32">
|
Name="DLL Release|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="1"/>
|
UsePrecompiledHeader="1"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Debug|Win32">
|
Name="DLL Debug|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="1"/>
|
UsePrecompiledHeader="1"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL VB|Win32">
|
Name="DLL VB|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="1"/>
|
UsePrecompiledHeader="1"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32">
|
Name="LIB Release|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="1"/>
|
UsePrecompiledHeader="1"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32">
|
Name="LIB Debug|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
UsePrecompiledHeader="1"/>
|
UsePrecompiledHeader="1"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngget.c">
|
RelativePath="..\..\pngget.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngmem.c">
|
RelativePath="..\..\pngmem.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngpread.c">
|
RelativePath="..\..\pngpread.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngread.c">
|
RelativePath="..\..\pngread.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngrio.c">
|
RelativePath="..\..\pngrio.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngrtran.c">
|
RelativePath="..\..\pngrtran.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngrutil.c">
|
RelativePath="..\..\pngrutil.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngset.c">
|
RelativePath="..\..\pngset.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngtrans.c">
|
RelativePath="..\..\pngtrans.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngwio.c">
|
RelativePath="..\..\pngwio.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngwrite.c">
|
RelativePath="..\..\pngwrite.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngwtran.c">
|
RelativePath="..\..\pngwtran.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngwutil.c">
|
RelativePath="..\..\pngwutil.c">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl">
|
Filter="h;hpp;hxx;hm;inl">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\png.h">
|
RelativePath="..\..\png.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngconf.h">
|
RelativePath="..\..\pngconf.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngpriv.h">
|
RelativePath="..\..\pngpriv.h">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
|
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\scripts\pngwin.rc">
|
RelativePath="..\..\scripts\pngwin.rc">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\PRJ0041.mak">
|
RelativePath=".\PRJ0041.mak">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Release|Win32">
|
Name="DLL Release|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Create dummy include files to prevent "Cannot find missing dependency..." warnings."
|
Description="Create dummy include files to prevent "Cannot find missing dependency..." warnings."
|
||||||
CommandLine="nmake -f PRJ0041.mak IntDir=$(IntDir)"
|
CommandLine="nmake -f PRJ0041.mak IntDir=$(IntDir)"
|
||||||
Outputs="$(IntDir)\alloc.h;$(IntDir)\fp.h;$(IntDir)\m68881.h;$(IntDir)\mem.h;$(IntDir)\pngusr.h;$(IntDir)\strings.h;$(IntDir)\unistd.h;$(IntDir)\unixio.h"/>
|
Outputs="$(IntDir)\alloc.h;$(IntDir)\fp.h;$(IntDir)\m68881.h;$(IntDir)\mem.h;$(IntDir)\pngusr.h;$(IntDir)\strings.h;$(IntDir)\unistd.h;$(IntDir)\unixio.h"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Debug|Win32">
|
Name="DLL Debug|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Create dummy include files to prevent "Cannot find missing dependency..." warnings."
|
Description="Create dummy include files to prevent "Cannot find missing dependency..." warnings."
|
||||||
CommandLine="nmake -f PRJ0041.mak IntDir=$(IntDir)"
|
CommandLine="nmake -f PRJ0041.mak IntDir=$(IntDir)"
|
||||||
Outputs="$(IntDir)\alloc.h;$(IntDir)\fp.h;$(IntDir)\m68881.h;$(IntDir)\mem.h;$(IntDir)\pngusr.h;$(IntDir)\strings.h;$(IntDir)\unistd.h;$(IntDir)\unixio.h"/>
|
Outputs="$(IntDir)\alloc.h;$(IntDir)\fp.h;$(IntDir)\m68881.h;$(IntDir)\mem.h;$(IntDir)\pngusr.h;$(IntDir)\strings.h;$(IntDir)\unistd.h;$(IntDir)\unixio.h"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL VB|Win32">
|
Name="DLL VB|Win32">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Create dummy include files to prevent "Cannot find missing dependency..." warnings."
|
Description="Create dummy include files to prevent "Cannot find missing dependency..." warnings."
|
||||||
CommandLine="nmake -f PRJ0041.mak IntDir=$(IntDir)"
|
CommandLine="nmake -f PRJ0041.mak IntDir=$(IntDir)"
|
||||||
Outputs="$(IntDir)\alloc.h;$(IntDir)\fp.h;$(IntDir)\m68881.h;$(IntDir)\mem.h;$(IntDir)\pngusr.h;$(IntDir)\strings.h;$(IntDir)\unistd.h;$(IntDir)\unixio.h"/>
|
Outputs="$(IntDir)\alloc.h;$(IntDir)\fp.h;$(IntDir)\m68881.h;$(IntDir)\mem.h;$(IntDir)\pngusr.h;$(IntDir)\strings.h;$(IntDir)\unistd.h;$(IntDir)\unixio.h"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="README.txt">
|
RelativePath="README.txt">
|
||||||
</File>
|
</File>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|||||||
@@ -1,267 +1,267 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="pngtest"
|
Name="pngtest"
|
||||||
RootNamespace="pngtest">
|
RootNamespace="pngtest">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_Release\Test"
|
OutputDirectory=".\Win32_DLL_Release\Test"
|
||||||
IntermediateDirectory=".\Win32_DLL_Release\Test"
|
IntermediateDirectory=".\Win32_DLL_Release\Test"
|
||||||
ConfigurationType="1">
|
ConfigurationType="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;PNG_DLL;PNG_NO_STDIO;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;NDEBUG;PNG_DLL;PNG_NO_STDIO;_CRT_SECURE_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Testing..."
|
Description="Testing..."
|
||||||
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
||||||
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
||||||
Outputs="$(IntDir)\pngout.png"/>
|
Outputs="$(IntDir)\pngout.png"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/pngtest.exe"
|
OutputFile="$(OutDir)/pngtest.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SubSystem="1"/>
|
SubSystem="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_Debug\Test"
|
OutputDirectory=".\Win32_DLL_Debug\Test"
|
||||||
IntermediateDirectory=".\Win32_DLL_Debug\Test"
|
IntermediateDirectory=".\Win32_DLL_Debug\Test"
|
||||||
ConfigurationType="1">
|
ConfigurationType="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;PNG_DLL;PNG_NO_STDIO;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;_DEBUG;PNG_DLL;PNG_NO_STDIO;_CRT_SECURE_NO_WARNINGS"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Testing..."
|
Description="Testing..."
|
||||||
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
||||||
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
||||||
Outputs="$(IntDir)\pngout.png"/>
|
Outputs="$(IntDir)\pngout.png"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/pngtest.exe"
|
OutputFile="$(OutDir)/pngtest.exe"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL VB|Win32"
|
Name="DLL VB|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_VB\Test"
|
OutputDirectory=".\Win32_DLL_VB\Test"
|
||||||
IntermediateDirectory=".\Win32_DLL_VB\Test"
|
IntermediateDirectory=".\Win32_DLL_VB\Test"
|
||||||
ConfigurationType="1">
|
ConfigurationType="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;PNG_DLL;PNG_NO_STDIO;PNGAPI=__stdcall;PNG_USER_PRIVATEBUILD;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;NDEBUG;PNG_DLL;PNG_NO_STDIO;PNGAPI=__stdcall;PNG_USER_PRIVATEBUILD;_CRT_SECURE_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
WarningLevel="2"
|
WarningLevel="2"
|
||||||
CallingConvention="2"
|
CallingConvention="2"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Testing..."
|
Description="Testing..."
|
||||||
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\..\Win32_DLL_Release\ZLib
|
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\..\Win32_DLL_Release\ZLib
|
||||||
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
||||||
Outputs="$(IntDir)\pngout.png"/>
|
Outputs="$(IntDir)\pngout.png"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/pngtest.exe"
|
OutputFile="$(OutDir)/pngtest.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
IgnoreDefaultLibraryNames="$(IntDir)\libpng16b.lib"
|
IgnoreDefaultLibraryNames="$(IntDir)\libpng16b.lib"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
OutputDirectory=".\Win32_LIB_Release\Test"
|
OutputDirectory=".\Win32_LIB_Release\Test"
|
||||||
IntermediateDirectory=".\Win32_LIB_Release\Test"
|
IntermediateDirectory=".\Win32_LIB_Release\Test"
|
||||||
ConfigurationType="1">
|
ConfigurationType="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="0"
|
RuntimeLibrary="0"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Testing..."
|
Description="Testing..."
|
||||||
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
||||||
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
||||||
Outputs="$(IntDir)\pngout.png"/>
|
Outputs="$(IntDir)\pngout.png"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/pngtest.exe"
|
OutputFile="$(OutDir)/pngtest.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
OutputDirectory=".\Win32_LIB_Debug\Test"
|
OutputDirectory=".\Win32_LIB_Debug\Test"
|
||||||
IntermediateDirectory=".\Win32_LIB_Debug\Test"
|
IntermediateDirectory=".\Win32_LIB_Debug\Test"
|
||||||
ConfigurationType="1">
|
ConfigurationType="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="1"
|
RuntimeLibrary="1"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"/>
|
CompileAs="0"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Testing..."
|
Description="Testing..."
|
||||||
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib
|
||||||
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
$(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
|
||||||
Outputs="$(IntDir)\pngout.png"/>
|
Outputs="$(IntDir)\pngout.png"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)/pngtest.exe"
|
OutputFile="$(OutDir)/pngtest.exe"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
|
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\pngtest.c">
|
RelativePath="..\..\pngtest.c">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|||||||
@@ -1,391 +1,391 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="zlib">
|
Name="zlib">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_Release\ZLib"
|
OutputDirectory=".\Win32_DLL_Release\ZLib"
|
||||||
IntermediateDirectory=".\Win32_DLL_Release\ZLib"
|
IntermediateDirectory=".\Win32_DLL_Release\ZLib"
|
||||||
ConfigurationType="2">
|
ConfigurationType="2">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
CompileAs="1"/>
|
CompileAs="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)\zlib1.dll"
|
OutputFile="$(OutDir)\zlib1.dll"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def"/>
|
ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="NDEBUG"
|
PreprocessorDefinitions="NDEBUG"
|
||||||
Culture="1033"/>
|
Culture="1033"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory=".\Win32_DLL_Debug\ZLib"
|
OutputDirectory=".\Win32_DLL_Debug\ZLib"
|
||||||
IntermediateDirectory=".\Win32_DLL_Debug\ZLib"
|
IntermediateDirectory=".\Win32_DLL_Debug\ZLib"
|
||||||
ConfigurationType="2">
|
ConfigurationType="2">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="1"/>
|
CompileAs="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
OutputFile="$(OutDir)\zlib1d.dll"
|
OutputFile="$(OutDir)\zlib1d.dll"
|
||||||
ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def"
|
ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def"
|
||||||
GenerateDebugInformation="TRUE"/>
|
GenerateDebugInformation="TRUE"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG"
|
PreprocessorDefinitions="_DEBUG"
|
||||||
Culture="1033"/>
|
Culture="1033"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
OutputDirectory=".\Win32_LIB_Release\ZLib"
|
OutputDirectory=".\Win32_LIB_Release\ZLib"
|
||||||
IntermediateDirectory=".\Win32_LIB_Release\ZLib"
|
IntermediateDirectory=".\Win32_LIB_Release\ZLib"
|
||||||
ConfigurationType="4">
|
ConfigurationType="4">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
||||||
StringPooling="TRUE"
|
StringPooling="TRUE"
|
||||||
RuntimeLibrary="0"
|
RuntimeLibrary="0"
|
||||||
EnableFunctionLevelLinking="TRUE"
|
EnableFunctionLevelLinking="TRUE"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
CompileAs="1"/>
|
CompileAs="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\zlib.lib"/>
|
OutputFile="$(OutDir)\zlib.lib"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
OutputDirectory=".\Win32_LIB_Debug\ZLib"
|
OutputDirectory=".\Win32_LIB_Debug\ZLib"
|
||||||
IntermediateDirectory=".\Win32_LIB_Debug\ZLib"
|
IntermediateDirectory=".\Win32_LIB_Debug\ZLib"
|
||||||
ConfigurationType="4">
|
ConfigurationType="4">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\..\..\zlib"
|
AdditionalIncludeDirectories="..\..\..\zlib"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="1"
|
RuntimeLibrary="1"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="1"/>
|
CompileAs="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\zlibd.lib"/>
|
OutputFile="$(OutDir)\zlibd.lib"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"/>
|
Name="VCMIDLTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
|
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\adler32.c">
|
RelativePath="..\..\..\zlib\adler32.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\compress.c">
|
RelativePath="..\..\..\zlib\compress.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\crc32.c">
|
RelativePath="..\..\..\zlib\crc32.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\deflate.c">
|
RelativePath="..\..\..\zlib\deflate.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\gzlib.c">
|
RelativePath="..\..\..\zlib\gzlib.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\gzclose.c">
|
RelativePath="..\..\..\zlib\gzclose.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\gzread.c">
|
RelativePath="..\..\..\zlib\gzread.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\gzwrite.c">
|
RelativePath="..\..\..\zlib\gzwrite.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\infback.c">
|
RelativePath="..\..\..\zlib\infback.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\inffast.c">
|
RelativePath="..\..\..\zlib\inffast.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\inflate.c">
|
RelativePath="..\..\..\zlib\inflate.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\inftrees.c">
|
RelativePath="..\..\..\zlib\inftrees.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\trees.c">
|
RelativePath="..\..\..\zlib\trees.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\uncompr.c">
|
RelativePath="..\..\..\zlib\uncompr.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\win32\zlib.def">
|
RelativePath="..\..\..\zlib\win32\zlib.def">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\zutil.c">
|
RelativePath="..\..\..\zlib\zutil.c">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl">
|
Filter="h;hpp;hxx;hm;inl">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\crc32.h">
|
RelativePath="..\..\..\zlib\crc32.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\deflate.h">
|
RelativePath="..\..\..\zlib\deflate.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\inffast.h">
|
RelativePath="..\..\..\zlib\inffast.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\inffixed.h">
|
RelativePath="..\..\..\zlib\inffixed.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\inflate.h">
|
RelativePath="..\..\..\zlib\inflate.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\inftrees.h">
|
RelativePath="..\..\..\zlib\inftrees.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\trees.h">
|
RelativePath="..\..\..\zlib\trees.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\zconf.h">
|
RelativePath="..\..\..\zlib\zconf.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\zlib.h">
|
RelativePath="..\..\..\zlib\zlib.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\zutil.h">
|
RelativePath="..\..\..\zlib\zutil.h">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
|
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\win32\zlib1.rc">
|
RelativePath="..\..\..\zlib\win32\zlib1.rc">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"/>
|
Name="VCResourceCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Assembler Files (Unsupported)"
|
Name="Assembler Files (Unsupported)"
|
||||||
Filter="asm;obj;c;cpp;cxx;h;hpp;hxx">
|
Filter="asm;obj;c;cpp;cxx;h;hpp;hxx">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\contrib\masmx86\gvmat32.asm">
|
RelativePath="..\..\..\zlib\contrib\masmx86\gvmat32.asm">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\contrib\masmx86\gvmat32c.c">
|
RelativePath="..\..\..\zlib\contrib\masmx86\gvmat32c.c">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"/>
|
Name="VCCLCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"/>
|
Name="VCCLCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"/>
|
Name="VCCLCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"/>
|
Name="VCCLCompilerTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\zlib\contrib\masmx86\inffas32.asm">
|
RelativePath="..\..\..\zlib\contrib\masmx86\inffas32.asm">
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Release|Win32"
|
Name="LIB Release|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration
|
<FileConfiguration
|
||||||
Name="LIB Debug|Win32"
|
Name="LIB Debug|Win32"
|
||||||
ExcludedFromBuild="TRUE">
|
ExcludedFromBuild="TRUE">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<File
|
<File
|
||||||
RelativePath="README.txt">
|
RelativePath="README.txt">
|
||||||
</File>
|
</File>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|||||||
@@ -1,234 +1,234 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug Library|Win32">
|
<ProjectConfiguration Include="Debug Library|Win32">
|
||||||
<Configuration>Debug Library</Configuration>
|
<Configuration>Debug Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release Library|Win32">
|
<ProjectConfiguration Include="Release Library|Win32">
|
||||||
<Configuration>Release Library</Configuration>
|
<Configuration>Release Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{D6973076-9317-4EF2-A0B8-B7A18AC0713E}</ProjectGuid>
|
<ProjectGuid>{D6973076-9317-4EF2-A0B8-B7A18AC0713E}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>libpng</RootNamespace>
|
<RootNamespace>libpng</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\zlib.props" />
|
<Import Project="$(SolutionDir)\zlib.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildBeforeTargets>
|
<CustomBuildBeforeTargets>
|
||||||
</CustomBuildBeforeTargets>
|
</CustomBuildBeforeTargets>
|
||||||
<TargetName>$(ProjectName)16</TargetName>
|
<TargetName>$(ProjectName)16</TargetName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildBeforeTargets />
|
<CustomBuildBeforeTargets />
|
||||||
<TargetName>$(ProjectName)16</TargetName>
|
<TargetName>$(ProjectName)16</TargetName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildBeforeTargets>
|
<CustomBuildBeforeTargets>
|
||||||
</CustomBuildBeforeTargets>
|
</CustomBuildBeforeTargets>
|
||||||
<TargetName>$(ProjectName)16</TargetName>
|
<TargetName>$(ProjectName)16</TargetName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildBeforeTargets />
|
<CustomBuildBeforeTargets />
|
||||||
<TargetName>$(ProjectName)16</TargetName>
|
<TargetName>$(ProjectName)16</TargetName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||||
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<CompileAs>CompileAsC</CompileAs>
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>zlib.lib</AdditionalDependencies>
|
||||||
<Version>16</Version>
|
<Version>16</Version>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||||
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<CompileAs>CompileAsC</CompileAs>
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||||
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<CompileAs>CompileAsC</CompileAs>
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>zlib.lib</AdditionalDependencies>
|
||||||
<Version>16</Version>
|
<Version>16</Version>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||||
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile>pngpriv.h</PrecompiledHeaderFile>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<CompileAs>CompileAsC</CompileAs>
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
</Link>
|
</Link>
|
||||||
<Lib>
|
<Lib>
|
||||||
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
|
||||||
</Lib>
|
</Lib>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\png.c">
|
<ClCompile Include="..\..\..\png.c">
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">Create</PrecompiledHeader>
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">Create</PrecompiledHeader>
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">Create</PrecompiledHeader>
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">Create</PrecompiledHeader>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\pngerror.c" />
|
<ClCompile Include="..\..\..\pngerror.c" />
|
||||||
<ClCompile Include="..\..\..\pngget.c" />
|
<ClCompile Include="..\..\..\pngget.c" />
|
||||||
<ClCompile Include="..\..\..\pngmem.c" />
|
<ClCompile Include="..\..\..\pngmem.c" />
|
||||||
<ClCompile Include="..\..\..\pngpread.c" />
|
<ClCompile Include="..\..\..\pngpread.c" />
|
||||||
<ClCompile Include="..\..\..\pngread.c" />
|
<ClCompile Include="..\..\..\pngread.c" />
|
||||||
<ClCompile Include="..\..\..\pngrio.c" />
|
<ClCompile Include="..\..\..\pngrio.c" />
|
||||||
<ClCompile Include="..\..\..\pngrtran.c" />
|
<ClCompile Include="..\..\..\pngrtran.c" />
|
||||||
<ClCompile Include="..\..\..\pngrutil.c" />
|
<ClCompile Include="..\..\..\pngrutil.c" />
|
||||||
<ClCompile Include="..\..\..\pngset.c" />
|
<ClCompile Include="..\..\..\pngset.c" />
|
||||||
<ClCompile Include="..\..\..\pngtrans.c" />
|
<ClCompile Include="..\..\..\pngtrans.c" />
|
||||||
<ClCompile Include="..\..\..\pngwio.c" />
|
<ClCompile Include="..\..\..\pngwio.c" />
|
||||||
<ClCompile Include="..\..\..\pngwrite.c" />
|
<ClCompile Include="..\..\..\pngwrite.c" />
|
||||||
<ClCompile Include="..\..\..\pngwtran.c" />
|
<ClCompile Include="..\..\..\pngwtran.c" />
|
||||||
<ClCompile Include="..\..\..\pngwutil.c" />
|
<ClCompile Include="..\..\..\pngwutil.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="..\..\..\scripts\pngwin.rc">
|
<ResourceCompile Include="..\..\..\scripts\pngwin.rc">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">true</ExcludedFromBuild>
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">true</ExcludedFromBuild>
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,61 +1,61 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{EB33566E-DA7F-4D28-9077-88C0B7C77E35}</ProjectGuid>
|
<ProjectGuid>{EB33566E-DA7F-4D28-9077-88C0B7C77E35}</ProjectGuid>
|
||||||
<RootNamespace>pnglibconf</RootNamespace>
|
<RootNamespace>pnglibconf</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\zlib.props" />
|
<Import Project="$(SolutionDir)\zlib.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<CustomBuildBeforeTargets>Build</CustomBuildBeforeTargets>
|
<CustomBuildBeforeTargets>Build</CustomBuildBeforeTargets>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<Optimization>MaxSpeed</Optimization>
|
<Optimization>MaxSpeed</Optimization>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Command>copy ..\..\..\scripts\pnglibconf.h.prebuilt ..\..\..\pnglibconf.h</Command>
|
<Command>copy ..\..\..\scripts\pnglibconf.h.prebuilt ..\..\..\pnglibconf.h</Command>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Generating pnglibconf.h</Message>
|
<Message>Generating pnglibconf.h</Message>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Outputs>..\..\..\pnglibconf.h</Outputs>
|
<Outputs>..\..\..\pnglibconf.h</Outputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Inputs>..\..\..\scripts\pnglibconf.h.prebuilt</Inputs>
|
<Inputs>..\..\..\scripts\pnglibconf.h.prebuilt</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,219 +1,219 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug Library|Win32">
|
<ProjectConfiguration Include="Debug Library|Win32">
|
||||||
<Configuration>Debug Library</Configuration>
|
<Configuration>Debug Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release Library|Win32">
|
<ProjectConfiguration Include="Release Library|Win32">
|
||||||
<Configuration>Release Library</Configuration>
|
<Configuration>Release Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{277AC57F-313B-4D06-B119-A3CDB672D2FF}</ProjectGuid>
|
<ProjectGuid>{277AC57F-313B-4D06-B119-A3CDB672D2FF}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>pngstest</RootNamespace>
|
<RootNamespace>pngstest</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\zlib.props" />
|
<Import Project="$(SolutionDir)\zlib.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing libpng simplified API test program</Message>
|
<Message>Executing libpng simplified API test program</Message>
|
||||||
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
||||||
<Outputs>$(IntDir)pngstest.out</Outputs>
|
<Outputs>$(IntDir)pngstest.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing libpng simplified API test program</Message>
|
<Message>Executing libpng simplified API test program</Message>
|
||||||
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
||||||
<Outputs>$(IntDir)pngstest.out</Outputs>
|
<Outputs>$(IntDir)pngstest.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing libpng simplified API test program</Message>
|
<Message>Executing libpng simplified API test program</Message>
|
||||||
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
||||||
<Outputs>$(IntDir)pngstest.out</Outputs>
|
<Outputs>$(IntDir)pngstest.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing libpng simplified API test program</Message>
|
<Message>Executing libpng simplified API test program</Message>
|
||||||
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
<Command>"$(OutDir)pngstest.exe" --strict --log --touch "$(IntDir)pngstest.out" ../../../contrib/pngsuite/basn0g01.png ../../../contrib/pngsuite/basn0g02.png ../../../contrib/pngsuite/basn0g04.png ../../../contrib/pngsuite/basn0g08.png ../../../contrib/pngsuite/basn0g16.png ../../../contrib/pngsuite/basn2c08.png ../../../contrib/pngsuite/basn2c16.png ../../../contrib/pngsuite/basn3p01.png ../../../contrib/pngsuite/basn3p02.png ../../../contrib/pngsuite/basn3p04.png ../../../contrib/pngsuite/basn3p08.png ../../../contrib/pngsuite/basn4a08.png ../../../contrib/pngsuite/basn4a16.png ../../../contrib/pngsuite/basn6a08.png ../../../contrib/pngsuite/basn6a16.png ../../../contrib/pngsuite/ftbbn0g01.png ../../../contrib/pngsuite/ftbbn0g02.png ../../../contrib/pngsuite/ftbbn0g04.png ../../../contrib/pngsuite/ftbbn2c16.png ../../../contrib/pngsuite/ftbbn3p08.png ../../../contrib/pngsuite/ftbgn2c16.png ../../../contrib/pngsuite/ftbgn3p08.png ../../../contrib/pngsuite/ftbrn2c08.png ../../../contrib/pngsuite/ftbwn0g16.png ../../../contrib/pngsuite/ftbwn3p08.png ../../../contrib/pngsuite/ftbyn3p08.png ../../../contrib/pngsuite/ftp0n0g08.png ../../../contrib/pngsuite/ftp0n2c08.png ../../../contrib/pngsuite/ftp0n3p08.png ../../../contrib/pngsuite/ftp1n3p08.png</Command>
|
||||||
<Outputs>$(IntDir)pngstest.out</Outputs>
|
<Outputs>$(IntDir)pngstest.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
<Inputs>$(OutDir)pngstest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\contrib\libtests\pngstest.c" />
|
<ClCompile Include="..\..\..\contrib\libtests\pngstest.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,220 +1,220 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug Library|Win32">
|
<ProjectConfiguration Include="Debug Library|Win32">
|
||||||
<Configuration>Debug Library</Configuration>
|
<Configuration>Debug Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release Library|Win32">
|
<ProjectConfiguration Include="Release Library|Win32">
|
||||||
<Configuration>Release Library</Configuration>
|
<Configuration>Release Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}</ProjectGuid>
|
<ProjectGuid>{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>pngtest</RootNamespace>
|
<RootNamespace>pngtest</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\zlib.props" />
|
<Import Project="$(SolutionDir)\zlib.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG test program</Message>
|
<Message>Executing PNG test program</Message>
|
||||||
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
||||||
<Outputs>$(IntDir)pngout.png</Outputs>
|
<Outputs>$(IntDir)pngout.png</Outputs>
|
||||||
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG test program</Message>
|
<Message>Executing PNG test program</Message>
|
||||||
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
||||||
<Outputs>$(IntDir)pngout.png</Outputs>
|
<Outputs>$(IntDir)pngout.png</Outputs>
|
||||||
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG test program</Message>
|
<Message>Executing PNG test program</Message>
|
||||||
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
||||||
<Outputs>$(IntDir)pngout.png</Outputs>
|
<Outputs>$(IntDir)pngout.png</Outputs>
|
||||||
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG test program</Message>
|
<Message>Executing PNG test program</Message>
|
||||||
<Command>$(OutDir)pngtest.exe ..\..\..\pngtest.png $(IntDir)pngout.png</Command>
|
<Command>$(OutDir)pngtest.exe ..\..\..\pngtest.png $(IntDir)pngout.png</Command>
|
||||||
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
<Command>"$(OutDir)pngtest.exe" ..\..\..\pngtest.png "$(IntDir)pngout.png"</Command>
|
||||||
<Outputs>$(IntDir)pngout.png</Outputs>
|
<Outputs>$(IntDir)pngout.png</Outputs>
|
||||||
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
<Inputs>..\..\..\pngtest.png;$(OutDir)pngtest.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\pngtest.c" />
|
<ClCompile Include="..\..\..\pngtest.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,219 +1,219 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug Library|Win32">
|
<ProjectConfiguration Include="Debug Library|Win32">
|
||||||
<Configuration>Debug Library</Configuration>
|
<Configuration>Debug Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release Library|Win32">
|
<ProjectConfiguration Include="Release Library|Win32">
|
||||||
<Configuration>Release Library</Configuration>
|
<Configuration>Release Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}</ProjectGuid>
|
<ProjectGuid>{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>pngunknown</RootNamespace>
|
<RootNamespace>pngunknown</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\zlib.props" />
|
<Import Project="$(SolutionDir)\zlib.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
||||||
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
||||||
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
||||||
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
<Command>"$(OutDir)pngunknown.exe" --strict --default --touch "$(IntDir)pngunknown.out" ../../../pngtest.png</Command>
|
||||||
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
<Outputs>$(IntDir)pngunknown.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
<Inputs>$(OutDir)pngunknown.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\contrib\libtests\pngunknown.c" />
|
<ClCompile Include="..\..\..\contrib\libtests\pngunknown.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,219 +1,219 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug Library|Win32">
|
<ProjectConfiguration Include="Debug Library|Win32">
|
||||||
<Configuration>Debug Library</Configuration>
|
<Configuration>Debug Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release Library|Win32">
|
<ProjectConfiguration Include="Release Library|Win32">
|
||||||
<Configuration>Release Library</Configuration>
|
<Configuration>Release Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}</ProjectGuid>
|
<ProjectGuid>{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>pngvalid</RootNamespace>
|
<RootNamespace>pngvalid</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\zlib.props" />
|
<Import Project="$(SolutionDir)\zlib.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<CustomBuildAfterTargets />
|
<CustomBuildAfterTargets />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
||||||
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
||||||
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PNG_USE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
||||||
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<FunctionLevelLinking>false</FunctionLevelLinking>
|
<FunctionLevelLinking>false</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(ZLibSrcDir);..\..\..\scripts;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4996;4127</DisableSpecificWarnings>
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
<CompileAsManaged>false</CompileAsManaged>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<StringPooling>true</StringPooling>
|
<StringPooling>true</StringPooling>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<FloatingPointExceptions>false</FloatingPointExceptions>
|
<FloatingPointExceptions>false</FloatingPointExceptions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
<AdditionalDependencies>libpng16.lib;zlib.lib</AdditionalDependencies>
|
||||||
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
</Link>
|
</Link>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>Executing PNG validation program</Message>
|
<Message>Executing PNG validation program</Message>
|
||||||
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
<Command>"$(OutDir)pngvalid.exe" --touch "$(IntDir)pngvalid.out"</Command>
|
||||||
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
<Outputs>$(IntDir)pngvalid.out</Outputs>
|
||||||
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
<Inputs>$(OutDir)pngvalid.exe</Inputs>
|
||||||
</CustomBuildStep>
|
</CustomBuildStep>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\contrib\libtests\pngvalid.c" />
|
<ClCompile Include="..\..\..\contrib\libtests\pngvalid.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,109 +1,109 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||||
# Visual Studio 2010
|
# Visual Studio 2010
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "zlib\zlib.vcxproj", "{60F89955-91C6-3A36-8000-13C592FEC2DF}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "zlib\zlib.vcxproj", "{60F89955-91C6-3A36-8000-13C592FEC2DF}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pnglibconf", "pnglibconf\pnglibconf.vcxproj", "{EB33566E-DA7F-4D28-9077-88C0B7C77E35}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pnglibconf", "pnglibconf\pnglibconf.vcxproj", "{EB33566E-DA7F-4D28-9077-88C0B7C77E35}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpng", "libpng\libpng.vcxproj", "{D6973076-9317-4EF2-A0B8-B7A18AC0713E}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpng", "libpng\libpng.vcxproj", "{D6973076-9317-4EF2-A0B8-B7A18AC0713E}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngtest", "pngtest\pngtest.vcxproj", "{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngtest", "pngtest\pngtest.vcxproj", "{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngvalid", "pngvalid\pngvalid.vcxproj", "{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngvalid", "pngvalid\pngvalid.vcxproj", "{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngstest", "pngstest\pngstest.vcxproj", "{277AC57F-313B-4D06-B119-A3CDB672D2FF}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngstest", "pngstest\pngstest.vcxproj", "{277AC57F-313B-4D06-B119-A3CDB672D2FF}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngunknown", "pngunknown\pngunknown.vcxproj", "{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pngunknown", "pngunknown\pngunknown.vcxproj", "{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
{60F89955-91C6-3A36-8000-13C592FEC2DF} = {60F89955-91C6-3A36-8000-13C592FEC2DF}
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35} = {EB33566E-DA7F-4D28-9077-88C0B7C77E35}
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E} = {D6973076-9317-4EF2-A0B8-B7A18AC0713E}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug Library|Win32 = Debug Library|Win32
|
Debug Library|Win32 = Debug Library|Win32
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Release Library|Win32 = Release Library|Win32
|
Release Library|Win32 = Release Library|Win32
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug|Win32.ActiveCfg = Debug|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug|Win32.Build.0 = Debug|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release Library|Win32.Build.0 = Release Library|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release Library|Win32.Build.0 = Release Library|Win32
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release|Win32.ActiveCfg = Release|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release|Win32.Build.0 = Release|Win32
|
{D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Release|Win32.Build.0 = Release|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug|Win32.ActiveCfg = Debug|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug|Win32.Build.0 = Debug|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release Library|Win32.Build.0 = Release Library|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release Library|Win32.Build.0 = Release Library|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release|Win32.ActiveCfg = Release|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release|Win32.Build.0 = Release|Win32
|
{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}.Release|Win32.Build.0 = Release|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug|Win32.ActiveCfg = Debug|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug|Win32.Build.0 = Debug|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release Library|Win32.Build.0 = Release Library|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release Library|Win32.Build.0 = Release Library|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release|Win32.ActiveCfg = Release|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release|Win32.Build.0 = Release|Win32
|
{60F89955-91C6-3A36-8000-13C592FEC2DF}.Release|Win32.Build.0 = Release|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug|Win32.ActiveCfg = Debug|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug|Win32.Build.0 = Debug|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release Library|Win32.Build.0 = Release Library|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release Library|Win32.Build.0 = Release Library|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release|Win32.ActiveCfg = Release|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release|Win32.Build.0 = Release|Win32
|
{9B36B6FE-7FC0-434F-A71F-BBEF8099F1D8}.Release|Win32.Build.0 = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug Library|Win32.ActiveCfg = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug Library|Win32.ActiveCfg = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug Library|Win32.Build.0 = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug Library|Win32.Build.0 = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug|Win32.ActiveCfg = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug|Win32.ActiveCfg = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug|Win32.Build.0 = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Debug|Win32.Build.0 = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release Library|Win32.ActiveCfg = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release Library|Win32.ActiveCfg = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release Library|Win32.Build.0 = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release Library|Win32.Build.0 = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release|Win32.ActiveCfg = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release|Win32.Build.0 = Release|Win32
|
{EB33566E-DA7F-4D28-9077-88C0B7C77E35}.Release|Win32.Build.0 = Release|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug|Win32.ActiveCfg = Debug|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug|Win32.Build.0 = Debug|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release Library|Win32.Build.0 = Release Library|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release Library|Win32.Build.0 = Release Library|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release|Win32.ActiveCfg = Release|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release|Win32.Build.0 = Release|Win32
|
{277AC57F-313B-4D06-B119-A3CDB672D2FF}.Release|Win32.Build.0 = Release|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug Library|Win32.ActiveCfg = Debug Library|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug Library|Win32.Build.0 = Debug Library|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug|Win32.ActiveCfg = Debug|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug|Win32.Build.0 = Debug|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release Library|Win32.ActiveCfg = Release Library|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release Library|Win32.Build.0 = Release Library|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release Library|Win32.Build.0 = Release Library|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release|Win32.ActiveCfg = Release|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release|Win32.Build.0 = Release|Win32
|
{C5D3156C-8C8C-4936-B35F-2B829BA36FEC}.Release|Win32.Build.0 = Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|||||||
@@ -1,169 +1,169 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug Library|Win32">
|
<ProjectConfiguration Include="Debug Library|Win32">
|
||||||
<Configuration>Debug Library</Configuration>
|
<Configuration>Debug Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release Library|Win32">
|
<ProjectConfiguration Include="Release Library|Win32">
|
||||||
<Configuration>Release Library</Configuration>
|
<Configuration>Release Library</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="$(ZLibSrcDir)\adler32.c" />
|
<ClCompile Include="$(ZLibSrcDir)\adler32.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\compress.c" />
|
<ClCompile Include="$(ZLibSrcDir)\compress.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\crc32.c" />
|
<ClCompile Include="$(ZLibSrcDir)\crc32.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\deflate.c" />
|
<ClCompile Include="$(ZLibSrcDir)\deflate.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\infback.c" />
|
<ClCompile Include="$(ZLibSrcDir)\infback.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\inffast.c" />
|
<ClCompile Include="$(ZLibSrcDir)\inffast.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\inflate.c" />
|
<ClCompile Include="$(ZLibSrcDir)\inflate.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\inftrees.c" />
|
<ClCompile Include="$(ZLibSrcDir)\inftrees.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\trees.c" />
|
<ClCompile Include="$(ZLibSrcDir)\trees.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\uncompr.c" />
|
<ClCompile Include="$(ZLibSrcDir)\uncompr.c" />
|
||||||
<ClCompile Include="$(ZLibSrcDir)\zutil.c" />
|
<ClCompile Include="$(ZLibSrcDir)\zutil.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{60F89955-91C6-3A36-8000-13C592FEC2DF}</ProjectGuid>
|
<ProjectGuid>{60F89955-91C6-3A36-8000-13C592FEC2DF}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>zlib</RootNamespace>
|
<RootNamespace>zlib</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\zlib.props" />
|
<Import Project="$(SolutionDir)\zlib.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<LinkIncremental>true</LinkIncremental>
|
<LinkIncremental>true</LinkIncremental>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>true</LinkIncremental>
|
<LinkIncremental>true</LinkIncremental>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<LinkIncremental>true</LinkIncremental>
|
<LinkIncremental>true</LinkIncremental>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>true</LinkIncremental>
|
<LinkIncremental>true</LinkIncremental>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>true</LinkIncremental>
|
<LinkIncremental>true</LinkIncremental>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<WarningLevel>TurnOffAllWarnings</WarningLevel>
|
<WarningLevel>TurnOffAllWarnings</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<WarningLevel>TurnOffAllWarnings</WarningLevel>
|
<WarningLevel>TurnOffAllWarnings</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
</Link>
|
</Link>
|
||||||
<Lib>
|
<Lib>
|
||||||
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
|
||||||
</Lib>
|
</Lib>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Optimization>Full</Optimization>
|
<Optimization>Full</Optimization>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||||
<BrowseInformation>true</BrowseInformation>
|
<BrowseInformation>true</BrowseInformation>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;Z_SOLO;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
</Link>
|
</Link>
|
||||||
<Lib>
|
<Lib>
|
||||||
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
|
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
|
||||||
</Lib>
|
</Lib>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,87 +1,87 @@
|
|||||||
# makefile for libpng using gcc (generic, static library)
|
# makefile for libpng using gcc (generic, static library)
|
||||||
# Copyright (C) 2008 Glenn Randers-Pehrson
|
# Copyright (C) 2008 Glenn Randers-Pehrson
|
||||||
# Copyright (C) 2000 Cosmin Truta
|
# Copyright (C) 2000 Cosmin Truta
|
||||||
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
|
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
|
||||||
#
|
#
|
||||||
# This code is released under the libpng license.
|
# This code is released under the libpng license.
|
||||||
# For conditions of distribution and use, see the disclaimer
|
# For conditions of distribution and use, see the disclaimer
|
||||||
# and license in png.h
|
# and license in png.h
|
||||||
|
|
||||||
# Location of the zlib library and include files
|
# Location of the zlib library and include files
|
||||||
ZLIBINC = ../zlib
|
ZLIBINC = ../zlib
|
||||||
ZLIBLIB = ../zlib
|
ZLIBLIB = ../zlib
|
||||||
|
|
||||||
# Compiler, linker, lib and other tools
|
# Compiler, linker, lib and other tools
|
||||||
CC = gcc
|
CC = gcc
|
||||||
LD = $(CC)
|
LD = $(CC)
|
||||||
AR_RC = ar rcs
|
AR_RC = ar rcs
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
RM_F = rm -f
|
RM_F = rm -f
|
||||||
|
|
||||||
CDEBUG = -g -DPNG_DEBUG=5
|
CDEBUG = -g -DPNG_DEBUG=5
|
||||||
LDDEBUG =
|
LDDEBUG =
|
||||||
CRELEASE = -O2
|
CRELEASE = -O2
|
||||||
LDRELEASE = -s
|
LDRELEASE = -s
|
||||||
#CFLAGS = -W -Wall $(CDEBUG)
|
#CFLAGS = -W -Wall $(CDEBUG)
|
||||||
CFLAGS = -W -Wall $(CRELEASE)
|
CFLAGS = -W -Wall $(CRELEASE)
|
||||||
#LDFLAGS = $(LDDEBUG)
|
#LDFLAGS = $(LDDEBUG)
|
||||||
LDFLAGS = $(LDRELEASE)
|
LDFLAGS = $(LDRELEASE)
|
||||||
LIBS = -lz -lm
|
LIBS = -lz -lm
|
||||||
|
|
||||||
# File extensions
|
# File extensions
|
||||||
O=.o
|
O=.o
|
||||||
A=.a
|
A=.a
|
||||||
EXE=
|
EXE=
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
OBJS = png$(O) pngerror$(O) pngget$(O) pngmem$(O) pngpread$(O) \
|
OBJS = png$(O) pngerror$(O) pngget$(O) pngmem$(O) pngpread$(O) \
|
||||||
pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) pngset$(O) \
|
pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) pngset$(O) \
|
||||||
pngtrans$(O) pngwio$(O) pngwrite$(O) pngwtran$(O) pngwutil$(O)
|
pngtrans$(O) pngwio$(O) pngwrite$(O) pngwtran$(O) pngwutil$(O)
|
||||||
|
|
||||||
# Targets
|
# Targets
|
||||||
all: static
|
all: static
|
||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
cp scripts/pnglibconf.h.prebuilt $@
|
||||||
|
|
||||||
.c$(O):
|
.c$(O):
|
||||||
$(CC) -c $(CFLAGS) -I$(ZLIBINC) $<
|
$(CC) -c $(CFLAGS) -I$(ZLIBINC) $<
|
||||||
|
|
||||||
static: libpng$(A) pngtest$(EXE)
|
static: libpng$(A) pngtest$(EXE)
|
||||||
|
|
||||||
shared:
|
shared:
|
||||||
@echo This is a generic makefile that cannot create shared libraries.
|
@echo This is a generic makefile that cannot create shared libraries.
|
||||||
@echo Please use a configuration that is specific to your platform.
|
@echo Please use a configuration that is specific to your platform.
|
||||||
@false
|
@false
|
||||||
|
|
||||||
libpng$(A): $(OBJS)
|
libpng$(A): $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
$(RANLIB) $@
|
$(RANLIB) $@
|
||||||
|
|
||||||
test: pngtest$(EXE)
|
test: pngtest$(EXE)
|
||||||
./pngtest$(EXE)
|
./pngtest$(EXE)
|
||||||
|
|
||||||
pngtest$(EXE): pngtest$(O) libpng$(A)
|
pngtest$(EXE): pngtest$(O) libpng$(A)
|
||||||
$(LD) $(LDFLAGS) -L$(ZLIBLIB) -o $@ pngtest$(O) libpng$(A) $(LIBS)
|
$(LD) $(LDFLAGS) -L$(ZLIBLIB) -o $@ pngtest$(O) libpng$(A) $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM_F) *$(O) libpng$(A) pngtest$(EXE) pngout.png pnglibconf.h
|
$(RM_F) *$(O) libpng$(A) pngtest$(EXE) pngout.png pnglibconf.h
|
||||||
|
|
||||||
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngerror$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngerror$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngget$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngget$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngmem$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngmem$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngpread$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngpread$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngread$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngread$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngrio$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngrio$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngrtran$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngrtran$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngrutil$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngrutil$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngset$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngset$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngtrans$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngtrans$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngwio$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngwio$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngwrite$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngwrite$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngwtran$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngwtran$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngwutil$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngwutil$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
|
|
||||||
pngtest$(O): png.h pngconf.h pnglibconf.h
|
pngtest$(O): png.h pngconf.h pnglibconf.h
|
||||||
|
|||||||
@@ -1,57 +1,57 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
||||||
#
|
#
|
||||||
# Permission to use, copy, modify, distribute, and sell this software and
|
# Permission to use, copy, modify, distribute, and sell this software and
|
||||||
# its documentation for any purpose is hereby granted without fee, provided
|
# its documentation for any purpose is hereby granted without fee, provided
|
||||||
# that (i) the above copyright notices and this permission notice appear in
|
# that (i) the above copyright notices and this permission notice appear in
|
||||||
# all copies of the software and related documentation, and (ii) the names of
|
# all copies of the software and related documentation, and (ii) the names of
|
||||||
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
||||||
# publicity relating to the software without the specific, prior written
|
# publicity relating to the software without the specific, prior written
|
||||||
# permission of Sam Leffler and Silicon Graphics.
|
# permission of Sam Leffler and Silicon Graphics.
|
||||||
#
|
#
|
||||||
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
||||||
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
||||||
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
#
|
#
|
||||||
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
||||||
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
||||||
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
# OF THIS SOFTWARE.
|
# OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
# Makefile for MS Visual C and Watcom C compilers.
|
# Makefile for MS Visual C and Watcom C compilers.
|
||||||
# Edit nmake.opt file if you want to ajust building options.
|
# Edit nmake.opt file if you want to ajust building options.
|
||||||
#
|
#
|
||||||
# To build:
|
# To build:
|
||||||
# C:\libtiff> nmake /f makefile.vc
|
# C:\libtiff> nmake /f makefile.vc
|
||||||
|
|
||||||
!INCLUDE nmake.opt
|
!INCLUDE nmake.opt
|
||||||
|
|
||||||
all: port lib tools
|
all: port lib tools
|
||||||
|
|
||||||
port::
|
port::
|
||||||
cd port
|
cd port
|
||||||
$(MAKE) /f Makefile.vc
|
$(MAKE) /f Makefile.vc
|
||||||
cd..
|
cd..
|
||||||
|
|
||||||
lib: port
|
lib: port
|
||||||
cd libtiff
|
cd libtiff
|
||||||
$(MAKE) /f Makefile.vc
|
$(MAKE) /f Makefile.vc
|
||||||
cd..
|
cd..
|
||||||
|
|
||||||
tools: lib
|
tools: lib
|
||||||
cd tools
|
cd tools
|
||||||
$(MAKE) /f Makefile.vc
|
$(MAKE) /f Makefile.vc
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
cd port
|
cd port
|
||||||
$(MAKE) /f Makefile.vc clean
|
$(MAKE) /f Makefile.vc clean
|
||||||
cd..
|
cd..
|
||||||
cd libtiff
|
cd libtiff
|
||||||
$(MAKE) /f Makefile.vc clean
|
$(MAKE) /f Makefile.vc clean
|
||||||
cd..
|
cd..
|
||||||
cd tools
|
cd tools
|
||||||
$(MAKE) /f Makefile.vc clean
|
$(MAKE) /f Makefile.vc clean
|
||||||
cd ..
|
cd ..
|
||||||
|
|||||||
@@ -1,28 +1,28 @@
|
|||||||
#
|
#
|
||||||
# If libtiff.a is installed in /usr/lib or /usr/local/lib just point
|
# If libtiff.a is installed in /usr/lib or /usr/local/lib just point
|
||||||
# LIBTIFF_DIR there. It doesn't need a full libtiff tree.
|
# LIBTIFF_DIR there. It doesn't need a full libtiff tree.
|
||||||
#
|
#
|
||||||
!INCLUDE ..\..\nmake.opt
|
!INCLUDE ..\..\nmake.opt
|
||||||
|
|
||||||
LIBTIFF_DIR = ..\..\libtiff
|
LIBTIFF_DIR = ..\..\libtiff
|
||||||
#
|
#
|
||||||
INCL = -I..\..\libtiff
|
INCL = -I..\..\libtiff
|
||||||
LIBS = $(LIBTIFF_DIR)\libtiff.lib
|
LIBS = $(LIBTIFF_DIR)\libtiff.lib
|
||||||
|
|
||||||
addtiffo: addtiffo.obj tif_overview.obj tif_ovrcache.obj
|
addtiffo: addtiffo.obj tif_overview.obj tif_ovrcache.obj
|
||||||
$(CC) $(CFLAGS) addtiffo.obj tif_overview.obj tif_ovrcache.obj \
|
$(CC) $(CFLAGS) addtiffo.obj tif_overview.obj tif_ovrcache.obj \
|
||||||
$(LIBS) /Feaddtiffo.exe
|
$(LIBS) /Feaddtiffo.exe
|
||||||
|
|
||||||
|
|
||||||
addtiffo.obj: addtiffo.c
|
addtiffo.obj: addtiffo.c
|
||||||
$(CC) -c $(CFLAGS) addtiffo.c
|
$(CC) -c $(CFLAGS) addtiffo.c
|
||||||
|
|
||||||
tif_overview.obj: tif_overview.c
|
tif_overview.obj: tif_overview.c
|
||||||
$(CC) -c $(CFLAGS) tif_overview.c
|
$(CC) -c $(CFLAGS) tif_overview.c
|
||||||
|
|
||||||
tif_ovrcache.obj: tif_ovrcache.c
|
tif_ovrcache.obj: tif_ovrcache.c
|
||||||
$(CC) -c $(CFLAGS) tif_ovrcache.c
|
$(CC) -c $(CFLAGS) tif_ovrcache.c
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-del *.obj
|
-del *.obj
|
||||||
-del addtiffo.exe
|
-del addtiffo.exe
|
||||||
|
|||||||
@@ -1,101 +1,101 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
||||||
#
|
#
|
||||||
# Permission to use, copy, modify, distribute, and sell this software and
|
# Permission to use, copy, modify, distribute, and sell this software and
|
||||||
# its documentation for any purpose is hereby granted without fee, provided
|
# its documentation for any purpose is hereby granted without fee, provided
|
||||||
# that (i) the above copyright notices and this permission notice appear in
|
# that (i) the above copyright notices and this permission notice appear in
|
||||||
# all copies of the software and related documentation, and (ii) the names of
|
# all copies of the software and related documentation, and (ii) the names of
|
||||||
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
||||||
# publicity relating to the software without the specific, prior written
|
# publicity relating to the software without the specific, prior written
|
||||||
# permission of Sam Leffler and Silicon Graphics.
|
# permission of Sam Leffler and Silicon Graphics.
|
||||||
#
|
#
|
||||||
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
||||||
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
||||||
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
#
|
#
|
||||||
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
||||||
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
||||||
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
# OF THIS SOFTWARE.
|
# OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
# Makefile for MS Visual C and Watcom C compilers.
|
# Makefile for MS Visual C and Watcom C compilers.
|
||||||
#
|
#
|
||||||
# To build:
|
# To build:
|
||||||
# C:\libtiff\libtiff> nmake /f makefile.vc all
|
# C:\libtiff\libtiff> nmake /f makefile.vc all
|
||||||
#
|
#
|
||||||
|
|
||||||
!INCLUDE ..\nmake.opt
|
!INCLUDE ..\nmake.opt
|
||||||
|
|
||||||
INCL = -I. $(JPEG_INCLUDE) $(ZLIB_INCLUDE) $(JBIG_INCLUDE)
|
INCL = -I. $(JPEG_INCLUDE) $(ZLIB_INCLUDE) $(JBIG_INCLUDE)
|
||||||
|
|
||||||
!IFDEF USE_WIN_CRT_LIB
|
!IFDEF USE_WIN_CRT_LIB
|
||||||
OBJ_SYSDEP_MODULE = tif_unix.obj
|
OBJ_SYSDEP_MODULE = tif_unix.obj
|
||||||
!ELSE
|
!ELSE
|
||||||
OBJ_SYSDEP_MODULE = tif_win32.obj
|
OBJ_SYSDEP_MODULE = tif_win32.obj
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
OBJ = \
|
OBJ = \
|
||||||
tif_aux.obj \
|
tif_aux.obj \
|
||||||
tif_close.obj \
|
tif_close.obj \
|
||||||
tif_codec.obj \
|
tif_codec.obj \
|
||||||
tif_color.obj \
|
tif_color.obj \
|
||||||
tif_compress.obj \
|
tif_compress.obj \
|
||||||
tif_dir.obj \
|
tif_dir.obj \
|
||||||
tif_dirinfo.obj \
|
tif_dirinfo.obj \
|
||||||
tif_dirread.obj \
|
tif_dirread.obj \
|
||||||
tif_dirwrite.obj \
|
tif_dirwrite.obj \
|
||||||
tif_dumpmode.obj \
|
tif_dumpmode.obj \
|
||||||
tif_error.obj \
|
tif_error.obj \
|
||||||
tif_extension.obj \
|
tif_extension.obj \
|
||||||
tif_fax3.obj \
|
tif_fax3.obj \
|
||||||
tif_fax3sm.obj \
|
tif_fax3sm.obj \
|
||||||
tif_getimage.obj \
|
tif_getimage.obj \
|
||||||
tif_jbig.obj \
|
tif_jbig.obj \
|
||||||
tif_jpeg.obj \
|
tif_jpeg.obj \
|
||||||
tif_jpeg_12.obj \
|
tif_jpeg_12.obj \
|
||||||
tif_ojpeg.obj \
|
tif_ojpeg.obj \
|
||||||
tif_flush.obj \
|
tif_flush.obj \
|
||||||
tif_luv.obj \
|
tif_luv.obj \
|
||||||
tif_lzw.obj \
|
tif_lzw.obj \
|
||||||
tif_next.obj \
|
tif_next.obj \
|
||||||
tif_open.obj \
|
tif_open.obj \
|
||||||
tif_packbits.obj \
|
tif_packbits.obj \
|
||||||
tif_pixarlog.obj \
|
tif_pixarlog.obj \
|
||||||
tif_predict.obj \
|
tif_predict.obj \
|
||||||
tif_print.obj \
|
tif_print.obj \
|
||||||
tif_read.obj \
|
tif_read.obj \
|
||||||
tif_stream.obj \
|
tif_stream.obj \
|
||||||
tif_swab.obj \
|
tif_swab.obj \
|
||||||
tif_strip.obj \
|
tif_strip.obj \
|
||||||
tif_thunder.obj \
|
tif_thunder.obj \
|
||||||
tif_tile.obj \
|
tif_tile.obj \
|
||||||
tif_version.obj \
|
tif_version.obj \
|
||||||
tif_warning.obj \
|
tif_warning.obj \
|
||||||
tif_write.obj \
|
tif_write.obj \
|
||||||
tif_zip.obj \
|
tif_zip.obj \
|
||||||
$(OBJ_SYSDEP_MODULE)
|
$(OBJ_SYSDEP_MODULE)
|
||||||
|
|
||||||
all: libtiff.lib $(DLLNAME)
|
all: libtiff.lib $(DLLNAME)
|
||||||
|
|
||||||
tif_config.h: tif_config.vc.h
|
tif_config.h: tif_config.vc.h
|
||||||
copy tif_config.vc.h tif_config.h
|
copy tif_config.vc.h tif_config.h
|
||||||
|
|
||||||
tiffconf.h: tiffconf.vc.h
|
tiffconf.h: tiffconf.vc.h
|
||||||
copy tiffconf.vc.h tiffconf.h
|
copy tiffconf.vc.h tiffconf.h
|
||||||
|
|
||||||
libtiff.lib: tif_config.h tiffconf.h $(OBJ)
|
libtiff.lib: tif_config.h tiffconf.h $(OBJ)
|
||||||
$(AR) /out:libtiff.lib $(OBJ) $(LIBS)
|
$(AR) /out:libtiff.lib $(OBJ) $(LIBS)
|
||||||
|
|
||||||
$(DLLNAME): tif_config.h tiffconf.h libtiff.def $(OBJ)
|
$(DLLNAME): tif_config.h tiffconf.h libtiff.def $(OBJ)
|
||||||
$(LD) /debug /dll /def:libtiff.def /out:$(DLLNAME) \
|
$(LD) /debug /dll /def:libtiff.def /out:$(DLLNAME) \
|
||||||
/implib:libtiff_i.lib $(OBJ) $(LIBS)
|
/implib:libtiff_i.lib $(OBJ) $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-del tif_config.h tiffconf.h
|
-del tif_config.h tiffconf.h
|
||||||
-del *.obj
|
-del *.obj
|
||||||
-del *.lib
|
-del *.lib
|
||||||
-del *.dll
|
-del *.dll
|
||||||
-del *.dll.manifest
|
-del *.dll.manifest
|
||||||
-del *.pdb
|
-del *.pdb
|
||||||
|
|||||||
@@ -1,42 +1,42 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
||||||
#
|
#
|
||||||
# Permission to use, copy, modify, distribute, and sell this software and
|
# Permission to use, copy, modify, distribute, and sell this software and
|
||||||
# its documentation for any purpose is hereby granted without fee, provided
|
# its documentation for any purpose is hereby granted without fee, provided
|
||||||
# that (i) the above copyright notices and this permission notice appear in
|
# that (i) the above copyright notices and this permission notice appear in
|
||||||
# all copies of the software and related documentation, and (ii) the names of
|
# all copies of the software and related documentation, and (ii) the names of
|
||||||
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
||||||
# publicity relating to the software without the specific, prior written
|
# publicity relating to the software without the specific, prior written
|
||||||
# permission of Sam Leffler and Silicon Graphics.
|
# permission of Sam Leffler and Silicon Graphics.
|
||||||
#
|
#
|
||||||
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
||||||
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
||||||
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
#
|
#
|
||||||
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
||||||
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
||||||
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
# OF THIS SOFTWARE.
|
# OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
# Makefile for MS Visual C and Watcom C compilers.
|
# Makefile for MS Visual C and Watcom C compilers.
|
||||||
#
|
#
|
||||||
# To build:
|
# To build:
|
||||||
# C:\libtiff\port> nmake /f makefile.vc
|
# C:\libtiff\port> nmake /f makefile.vc
|
||||||
|
|
||||||
!INCLUDE ..\nmake.opt
|
!INCLUDE ..\nmake.opt
|
||||||
|
|
||||||
OBJ = \
|
OBJ = \
|
||||||
strcasecmp.obj \
|
strcasecmp.obj \
|
||||||
getopt.obj
|
getopt.obj
|
||||||
|
|
||||||
all: libport.lib
|
all: libport.lib
|
||||||
|
|
||||||
libport.lib: $(OBJ)
|
libport.lib: $(OBJ)
|
||||||
$(AR) /out:libport.lib $(OBJ)
|
$(AR) /out:libport.lib $(OBJ)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-del *.obj
|
-del *.obj
|
||||||
-del *.lib
|
-del *.lib
|
||||||
|
|
||||||
|
|||||||
@@ -1,51 +1,51 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
||||||
#
|
#
|
||||||
# Permission to use, copy, modify, distribute, and sell this software and
|
# Permission to use, copy, modify, distribute, and sell this software and
|
||||||
# its documentation for any purpose is hereby granted without fee, provided
|
# its documentation for any purpose is hereby granted without fee, provided
|
||||||
# that (i) the above copyright notices and this permission notice appear in
|
# that (i) the above copyright notices and this permission notice appear in
|
||||||
# all copies of the software and related documentation, and (ii) the names of
|
# all copies of the software and related documentation, and (ii) the names of
|
||||||
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
||||||
# publicity relating to the software without the specific, prior written
|
# publicity relating to the software without the specific, prior written
|
||||||
# permission of Sam Leffler and Silicon Graphics.
|
# permission of Sam Leffler and Silicon Graphics.
|
||||||
#
|
#
|
||||||
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
||||||
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
||||||
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
#
|
#
|
||||||
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
||||||
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
||||||
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
# OF THIS SOFTWARE.
|
# OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
# Makefile for MS Visual C and Watcom C compilers.
|
# Makefile for MS Visual C and Watcom C compilers.
|
||||||
#
|
#
|
||||||
# To build:
|
# To build:
|
||||||
# C:\libtiff\tools> nmake /f makefile.vc
|
# C:\libtiff\tools> nmake /f makefile.vc
|
||||||
|
|
||||||
!INCLUDE ..\nmake.opt
|
!INCLUDE ..\nmake.opt
|
||||||
|
|
||||||
TARGETS = bmp2tiff.exe tiffinfo.exe tiffdump.exe fax2tiff.exe \
|
TARGETS = bmp2tiff.exe tiffinfo.exe tiffdump.exe fax2tiff.exe \
|
||||||
fax2ps.exe gif2tiff.exe pal2rgb.exe ppm2tiff.exe \
|
fax2ps.exe gif2tiff.exe pal2rgb.exe ppm2tiff.exe \
|
||||||
rgb2ycbcr.exe thumbnail.exe ras2tiff.exe raw2tiff.exe \
|
rgb2ycbcr.exe thumbnail.exe ras2tiff.exe raw2tiff.exe \
|
||||||
tiff2bw.exe tiff2rgba.exe tiff2pdf.exe tiff2ps.exe \
|
tiff2bw.exe tiff2rgba.exe tiff2pdf.exe tiff2ps.exe \
|
||||||
tiffcmp.exe tiffcp.exe tiffcrop.exe tiffdither.exe \
|
tiffcmp.exe tiffcp.exe tiffcrop.exe tiffdither.exe \
|
||||||
tiffmedian.exe tiffset.exe tiffsplit.exe
|
tiffmedian.exe tiffset.exe tiffsplit.exe
|
||||||
|
|
||||||
INCL = -I..\libtiff -I..\port -DNEED_LIBPORT
|
INCL = -I..\libtiff -I..\port -DNEED_LIBPORT
|
||||||
LIBS = $(LIBS) ..\port\libport.lib ..\libtiff\libtiff.lib
|
LIBS = $(LIBS) ..\port\libport.lib ..\libtiff\libtiff.lib
|
||||||
|
|
||||||
default: $(TARGETS)
|
default: $(TARGETS)
|
||||||
|
|
||||||
.c.exe:
|
.c.exe:
|
||||||
$(CC) $(CFLAGS) $*.c $(EXTRA_OBJ) $(LIBS)
|
$(CC) $(CFLAGS) $*.c $(EXTRA_OBJ) $(LIBS)
|
||||||
|
|
||||||
tiffgt.exe:
|
tiffgt.exe:
|
||||||
$(CC) $(CFLAGS) tiffgt.c $(EXTRA_OBJ) $(LIBS)
|
$(CC) $(CFLAGS) tiffgt.c $(EXTRA_OBJ) $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-del *.exe
|
-del *.exe
|
||||||
-del *.exe.manifest
|
-del *.exe.manifest
|
||||||
-del *.obj
|
-del *.obj
|
||||||
|
|||||||
@@ -1,76 +1,76 @@
|
|||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
Project: "bench"=bench_bench.dsp - Package Owner=<4>
|
Project: "bench"=bench_bench.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name net
|
Project_Dep_Name net
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name base
|
Project_Dep_Name base
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "bench_gui"=bench_bench_gui.dsp - Package Owner=<4>
|
Project: "bench_gui"=bench_bench_gui.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name core
|
Project_Dep_Name core
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name base
|
Project_Dep_Name base
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "net"=..\..\build\msw\wx_net.dsp - Package Owner=<4>
|
Project: "net"=..\..\build\msw\wx_net.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "base"=..\..\build\msw\wx_base.dsp - Package Owner=<4>
|
Project: "base"=..\..\build\msw\wx_base.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "core"=..\..\build\msw\wx_core.dsp - Package Owner=<4>
|
Project: "core"=..\..\build\msw\wx_core.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,35 +1,35 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench", "bench_vc7_bench.vcproj", "{737049A0-9449-5B95-B173-0C906929CCD3}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench", "bench_vc7_bench.vcproj", "{737049A0-9449-5B95-B173-0C906929CCD3}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_gui", "bench_vc7_bench_gui.vcproj", "{B5CBA605-D60A-5254-8137-1BBF4F5D9538}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_gui", "bench_vc7_bench_gui.vcproj", "{B5CBA605-D60A-5254-8137-1BBF4F5D9538}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.Debug|Win32.ActiveCfg = Debug|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.Debug|Win32.Build.0 = Debug|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.Release|Win32.ActiveCfg = Release|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.Release|Win32.Build.0 = Release|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.Release|Win32.Build.0 = Release|Win32
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{737049A0-9449-5B95-B173-0C906929CCD3}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Debug|Win32.ActiveCfg = Debug|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Debug|Win32.Build.0 = Debug|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Release|Win32.ActiveCfg = Release|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Release|Win32.Build.0 = Release|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Release|Win32.Build.0 = Release|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
@@ -1,322 +1,322 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="bench"
|
Name="bench"
|
||||||
ProjectGUID="{737049A0-9449-5B95-B173-0C906929CCD3}">
|
ProjectGUID="{737049A0-9449-5B95-B173-0C906929CCD3}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\bench"
|
IntermediateDirectory="vc_mswud\bench"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\bench\"
|
ObjectFile="vc_mswud\bench\"
|
||||||
ProgramDataBaseFileName="vc_mswud\bench.pdb"
|
ProgramDataBaseFileName="vc_mswud\bench.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud_net.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud_net.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\bench.exe"
|
OutputFile="vc_mswud\bench.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\bench.pdb"
|
ProgramDatabaseFile="vc_mswud\bench.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\bench"
|
IntermediateDirectory="vc_mswu\bench"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\bench\"
|
ObjectFile="vc_mswu\bench\"
|
||||||
ProgramDataBaseFileName="vc_mswu\bench.pdb"
|
ProgramDataBaseFileName="vc_mswu\bench.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u_net.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u_net.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\bench.exe"
|
OutputFile="vc_mswu\bench.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\bench.pdb"
|
ProgramDatabaseFile="vc_mswu\bench.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\bench"
|
IntermediateDirectory="vc_mswuddll\bench"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\bench\"
|
ObjectFile="vc_mswuddll\bench\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\bench.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\bench.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud_net.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud_net.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\bench.exe"
|
OutputFile="vc_mswuddll\bench.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\bench.pdb"
|
ProgramDatabaseFile="vc_mswuddll\bench.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\bench"
|
IntermediateDirectory="vc_mswudll\bench"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\bench\"
|
ObjectFile="vc_mswudll\bench\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\bench.pdb"
|
ProgramDataBaseFileName="vc_mswudll\bench.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u_net.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u_net.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\bench.exe"
|
OutputFile="vc_mswudll\bench.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\bench.pdb"
|
ProgramDatabaseFile="vc_mswudll\bench.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\bench.cpp">
|
RelativePath=".\bench.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\datetime.cpp">
|
RelativePath=".\datetime.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\htmlparser\htmlpars.cpp">
|
RelativePath=".\htmlparser\htmlpars.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\htmlparser\htmltag.cpp">
|
RelativePath=".\htmlparser\htmltag.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\ipcclient.cpp">
|
RelativePath=".\ipcclient.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\log.cpp">
|
RelativePath=".\log.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\mbconv.cpp">
|
RelativePath=".\mbconv.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\printfbench.cpp">
|
RelativePath=".\printfbench.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\strings.cpp">
|
RelativePath=".\strings.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\tls.cpp">
|
RelativePath=".\tls.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
@@ -1,306 +1,306 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="bench_gui"
|
Name="bench_gui"
|
||||||
ProjectGUID="{B5CBA605-D60A-5254-8137-1BBF4F5D9538}">
|
ProjectGUID="{B5CBA605-D60A-5254-8137-1BBF4F5D9538}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\bench_gui"
|
IntermediateDirectory="vc_mswud\bench_gui"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;NOPCH;_CONSOLE"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\bench_gui\"
|
ObjectFile="vc_mswud\bench_gui\"
|
||||||
ProgramDataBaseFileName="vc_mswud\bench_gui.pdb"
|
ProgramDataBaseFileName="vc_mswud\bench_gui.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\bench_gui.exe"
|
OutputFile="vc_mswud\bench_gui.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\bench_gui.pdb"
|
ProgramDatabaseFile="vc_mswud\bench_gui.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;NOPCH;_CONSOLE"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;NOPCH;_CONSOLE"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\bench_gui"
|
IntermediateDirectory="vc_mswu\bench_gui"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;NOPCH;_CONSOLE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\bench_gui\"
|
ObjectFile="vc_mswu\bench_gui\"
|
||||||
ProgramDataBaseFileName="vc_mswu\bench_gui.pdb"
|
ProgramDataBaseFileName="vc_mswu\bench_gui.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\bench_gui.exe"
|
OutputFile="vc_mswu\bench_gui.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\bench_gui.pdb"
|
ProgramDatabaseFile="vc_mswu\bench_gui.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;NOPCH;_CONSOLE"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;NOPCH;_CONSOLE"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\bench_gui"
|
IntermediateDirectory="vc_mswuddll\bench_gui"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\bench_gui\"
|
ObjectFile="vc_mswuddll\bench_gui\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\bench_gui.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\bench_gui.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\bench_gui.exe"
|
OutputFile="vc_mswuddll\bench_gui.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\bench_gui.pdb"
|
ProgramDatabaseFile="vc_mswuddll\bench_gui.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\bench_gui"
|
IntermediateDirectory="vc_mswudll\bench_gui"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\bench_gui\"
|
ObjectFile="vc_mswudll\bench_gui\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\bench_gui.pdb"
|
ProgramDataBaseFileName="vc_mswudll\bench_gui.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\bench_gui.exe"
|
OutputFile="vc_mswudll\bench_gui.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\bench_gui.pdb"
|
ProgramDatabaseFile="vc_mswudll\bench_gui.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;NOPCH;_CONSOLE"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\bench.cpp">
|
RelativePath=".\bench.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\image.cpp">
|
RelativePath=".\image.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\samples\sample.rc">
|
RelativePath="..\..\samples\sample.rc">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
@@ -1,56 +1,56 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||||
# Visual Studio 2005
|
# Visual Studio 2005
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench", "bench_vc8_bench.vcproj", "{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench", "bench_vc8_bench.vcproj", "{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_gui", "bench_vc8_bench_gui.vcproj", "{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_gui", "bench_vc8_bench_gui.vcproj", "{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|Win32.ActiveCfg = Debug|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|Win32.Build.0 = Debug|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|x64.ActiveCfg = Debug|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|x64.Build.0 = Debug|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Debug|x64.Build.0 = Debug|x64
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|Win32.ActiveCfg = Release|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|Win32.Build.0 = Release|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|Win32.Build.0 = Release|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|x64.ActiveCfg = Release|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|x64.ActiveCfg = Release|x64
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|x64.Build.0 = Release|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.Release|x64.Build.0 = Release|x64
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|x64.Build.0 = DLL Release|x64
|
{6DD4A887-C3C2-5C7D-9C00-8A250C1856D6}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|Win32.ActiveCfg = Debug|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|Win32.Build.0 = Debug|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|x64.ActiveCfg = Debug|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|x64.Build.0 = Debug|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Debug|x64.Build.0 = Debug|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|Win32.ActiveCfg = Release|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|Win32.Build.0 = Release|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|Win32.Build.0 = Release|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|x64.ActiveCfg = Release|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|x64.ActiveCfg = Release|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|x64.Build.0 = Release|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.Release|x64.Build.0 = Release|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|x64.Build.0 = DLL Release|x64
|
{4BBE5BC1-5EE7-5792-84D5-A2611CE91B42}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,56 +1,56 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
# Visual Studio 2008
|
# Visual Studio 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench", "bench_vc9_bench.vcproj", "{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench", "bench_vc9_bench.vcproj", "{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_gui", "bench_vc9_bench_gui.vcproj", "{9B5F97AF-C174-572F-9134-D2E56F7810BE}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_gui", "bench_vc9_bench_gui.vcproj", "{9B5F97AF-C174-572F-9134-D2E56F7810BE}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|Win32.ActiveCfg = Debug|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|Win32.Build.0 = Debug|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|x64.ActiveCfg = Debug|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|x64.Build.0 = Debug|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Debug|x64.Build.0 = Debug|x64
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|Win32.ActiveCfg = Release|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|Win32.Build.0 = Release|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|Win32.Build.0 = Release|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|x64.ActiveCfg = Release|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|x64.ActiveCfg = Release|x64
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|x64.Build.0 = Release|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.Release|x64.Build.0 = Release|x64
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|x64.Build.0 = DLL Release|x64
|
{B5A0DEAC-4B91-5F56-9192-C86A1ED7DA2F}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|Win32.ActiveCfg = Debug|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|Win32.Build.0 = Debug|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|x64.ActiveCfg = Debug|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|x64.Build.0 = Debug|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Debug|x64.Build.0 = Debug|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|Win32.ActiveCfg = Release|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|Win32.Build.0 = Release|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|Win32.Build.0 = Release|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|x64.ActiveCfg = Release|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|x64.ActiveCfg = Release|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|x64.Build.0 = Release|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.Release|x64.Build.0 = Release|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|x64.Build.0 = DLL Release|x64
|
{9B5F97AF-C174-572F-9134-D2E56F7810BE}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,336 +1,336 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../build/msw/config.bcc
|
!include ../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
BENCH_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
BENCH_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG) $(__THREADSFLAG_0) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG) $(__THREADSFLAG_0) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
$(____CAIRO_INCLUDEDIR_FILENAMES) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
||||||
$(CPPFLAGS) $(CXXFLAGS)
|
$(CPPFLAGS) $(CXXFLAGS)
|
||||||
BENCH_OBJECTS = \
|
BENCH_OBJECTS = \
|
||||||
$(OBJS)\bench_bench.obj \
|
$(OBJS)\bench_bench.obj \
|
||||||
$(OBJS)\bench_datetime.obj \
|
$(OBJS)\bench_datetime.obj \
|
||||||
$(OBJS)\bench_htmlpars.obj \
|
$(OBJS)\bench_htmlpars.obj \
|
||||||
$(OBJS)\bench_htmltag.obj \
|
$(OBJS)\bench_htmltag.obj \
|
||||||
$(OBJS)\bench_ipcclient.obj \
|
$(OBJS)\bench_ipcclient.obj \
|
||||||
$(OBJS)\bench_log.obj \
|
$(OBJS)\bench_log.obj \
|
||||||
$(OBJS)\bench_mbconv.obj \
|
$(OBJS)\bench_mbconv.obj \
|
||||||
$(OBJS)\bench_strings.obj \
|
$(OBJS)\bench_strings.obj \
|
||||||
$(OBJS)\bench_tls.obj \
|
$(OBJS)\bench_tls.obj \
|
||||||
$(OBJS)\bench_printfbench.obj
|
$(OBJS)\bench_printfbench.obj
|
||||||
BENCH_GUI_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
BENCH_GUI_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG) $(__THREADSFLAG_0) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG) $(__THREADSFLAG_0) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES) -I. $(__DLLFLAG_p) -I.\..\..\samples \
|
$(____CAIRO_INCLUDEDIR_FILENAMES) -I. $(__DLLFLAG_p) -I.\..\..\samples \
|
||||||
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
||||||
BENCH_GUI_OBJECTS = \
|
BENCH_GUI_OBJECTS = \
|
||||||
$(OBJS)\bench_gui_bench.obj \
|
$(OBJS)\bench_gui_bench.obj \
|
||||||
$(OBJS)\bench_gui_image.obj
|
$(OBJS)\bench_gui_image.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_NET_p = \
|
__WXLIB_NET_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__bench_gui___depname = $(OBJS)\bench_gui.exe
|
__bench_gui___depname = $(OBJS)\bench_gui.exe
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_3 = -d__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_3 = -d__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_3 = -dwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_3 = -dwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p_3 = -dNDEBUG
|
__NDEBUG_DEFINE_p_3 = -dNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_3 = -dwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_3 = -dwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_3 = -dwxNO_RTTI
|
__RTTI_DEFINE_p_3 = -dwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_3 = -dwxNO_THREADS
|
__THREAD_DEFINE_p_3 = -dwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_3 = -dwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_3 = -dwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_3 = -d_UNICODE
|
__UNICODE_DEFINE_p_3 = -d_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_3 = -dwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_3 = -dwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_3_p = -i$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_3_p = -i$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_3 = -dWXUSINGDLL
|
__DLLFLAG_p_3 = -dWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG = -Od
|
__OPTIMIZEFLAG = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG = -O2
|
__OPTIMIZEFLAG = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG = mt
|
__THREADSFLAG = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_0 =
|
__THREADSFLAG_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_0 = -tWM
|
__THREADSFLAG_0 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS = -tWR
|
__RUNTIME_LIBS = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS =
|
__RUNTIME_LIBS =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_0 = i
|
__RUNTIME_LIBS_0 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_0 =
|
__RUNTIME_LIBS_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\bench.exe data $(__bench_gui___depname) data-image
|
all: $(OBJS)\bench.exe data $(__bench_gui___depname) data-image
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\bench.exe del $(OBJS)\bench.exe
|
-if exist $(OBJS)\bench.exe del $(OBJS)\bench.exe
|
||||||
-if exist $(OBJS)\bench.tds del $(OBJS)\bench.tds
|
-if exist $(OBJS)\bench.tds del $(OBJS)\bench.tds
|
||||||
-if exist $(OBJS)\bench.ilc del $(OBJS)\bench.ilc
|
-if exist $(OBJS)\bench.ilc del $(OBJS)\bench.ilc
|
||||||
-if exist $(OBJS)\bench.ild del $(OBJS)\bench.ild
|
-if exist $(OBJS)\bench.ild del $(OBJS)\bench.ild
|
||||||
-if exist $(OBJS)\bench.ilf del $(OBJS)\bench.ilf
|
-if exist $(OBJS)\bench.ilf del $(OBJS)\bench.ilf
|
||||||
-if exist $(OBJS)\bench.ils del $(OBJS)\bench.ils
|
-if exist $(OBJS)\bench.ils del $(OBJS)\bench.ils
|
||||||
-if exist $(OBJS)\bench_gui.exe del $(OBJS)\bench_gui.exe
|
-if exist $(OBJS)\bench_gui.exe del $(OBJS)\bench_gui.exe
|
||||||
-if exist $(OBJS)\bench_gui.tds del $(OBJS)\bench_gui.tds
|
-if exist $(OBJS)\bench_gui.tds del $(OBJS)\bench_gui.tds
|
||||||
-if exist $(OBJS)\bench_gui.ilc del $(OBJS)\bench_gui.ilc
|
-if exist $(OBJS)\bench_gui.ilc del $(OBJS)\bench_gui.ilc
|
||||||
-if exist $(OBJS)\bench_gui.ild del $(OBJS)\bench_gui.ild
|
-if exist $(OBJS)\bench_gui.ild del $(OBJS)\bench_gui.ild
|
||||||
-if exist $(OBJS)\bench_gui.ilf del $(OBJS)\bench_gui.ilf
|
-if exist $(OBJS)\bench_gui.ilf del $(OBJS)\bench_gui.ilf
|
||||||
-if exist $(OBJS)\bench_gui.ils del $(OBJS)\bench_gui.ils
|
-if exist $(OBJS)\bench_gui.ils del $(OBJS)\bench_gui.ils
|
||||||
|
|
||||||
$(OBJS)\bench.exe: $(BENCH_OBJECTS)
|
$(OBJS)\bench.exe: $(BENCH_OBJECTS)
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
|
||||||
c0x32.obj $(BENCH_OBJECTS),$@,, $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG)$(__RUNTIME_LIBS_0).lib,,
|
c0x32.obj $(BENCH_OBJECTS),$@,, $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG)$(__RUNTIME_LIBS_0).lib,,
|
||||||
|
|
|
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (htmltest.html) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (htmltest.html) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
$(OBJS)\bench_gui.exe: $(BENCH_GUI_OBJECTS) $(OBJS)\bench_gui_sample.res
|
$(OBJS)\bench_gui.exe: $(BENCH_GUI_OBJECTS) $(OBJS)\bench_gui_sample.res
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
|
||||||
c0x32.obj $(BENCH_GUI_OBJECTS),$@,, $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG)$(__RUNTIME_LIBS_0).lib,, $(OBJS)\bench_gui_sample.res
|
c0x32.obj $(BENCH_GUI_OBJECTS),$@,, $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG)$(__RUNTIME_LIBS_0).lib,, $(OBJS)\bench_gui_sample.res
|
||||||
|
|
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
data-image:
|
data-image:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (../../samples/image/horse.bmp ../../samples/image/horse.jpg ../../samples/image/horse.png ../../samples/image/horse.tif) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (../../samples/image/horse.bmp ../../samples/image/horse.jpg ../../samples/image/horse.png ../../samples/image/horse.tif) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\bench_bench.obj: .\bench.cpp
|
$(OBJS)\bench_bench.obj: .\bench.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\bench.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\bench.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_datetime.obj: .\datetime.cpp
|
$(OBJS)\bench_datetime.obj: .\datetime.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\datetime.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\datetime.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_htmlpars.obj: .\htmlparser\htmlpars.cpp
|
$(OBJS)\bench_htmlpars.obj: .\htmlparser\htmlpars.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\htmlparser\htmlpars.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\htmlparser\htmlpars.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_htmltag.obj: .\htmlparser\htmltag.cpp
|
$(OBJS)\bench_htmltag.obj: .\htmlparser\htmltag.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\htmlparser\htmltag.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\htmlparser\htmltag.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_ipcclient.obj: .\ipcclient.cpp
|
$(OBJS)\bench_ipcclient.obj: .\ipcclient.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\ipcclient.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\ipcclient.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_log.obj: .\log.cpp
|
$(OBJS)\bench_log.obj: .\log.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\log.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\log.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_mbconv.obj: .\mbconv.cpp
|
$(OBJS)\bench_mbconv.obj: .\mbconv.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\mbconv.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\mbconv.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_strings.obj: .\strings.cpp
|
$(OBJS)\bench_strings.obj: .\strings.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\strings.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\strings.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_tls.obj: .\tls.cpp
|
$(OBJS)\bench_tls.obj: .\tls.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\tls.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\tls.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_printfbench.obj: .\printfbench.cpp
|
$(OBJS)\bench_printfbench.obj: .\printfbench.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\printfbench.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_CXXFLAGS) .\printfbench.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_gui_sample.res: .\..\..\samples\sample.rc
|
$(OBJS)\bench_gui_sample.res: .\..\..\samples\sample.rc
|
||||||
<<<<<<< HEAD
|
<<<<<<< HEAD
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) $(__MSLU_DEFINE_p_3) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_3_p) -i. $(__DLLFLAG_p_3) -i.\..\..\samples -dNOPCH .\..\..\samples\sample.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) $(__MSLU_DEFINE_p_3) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_3_p) -i. $(__DLLFLAG_p_3) -i.\..\..\samples -dNOPCH .\..\..\samples\sample.rc
|
||||||
=======
|
=======
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_3_p) -i. $(__DLLFLAG_p_3) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_3_p) -i. $(__DLLFLAG_p_3) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
|
||||||
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
||||||
|
|
||||||
$(OBJS)\bench_gui_bench.obj: .\bench.cpp
|
$(OBJS)\bench_gui_bench.obj: .\bench.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_GUI_CXXFLAGS) .\bench.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_GUI_CXXFLAGS) .\bench.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_gui_image.obj: .\image.cpp
|
$(OBJS)\bench_gui_image.obj: .\image.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(BENCH_GUI_CXXFLAGS) .\image.cpp
|
$(CXX) -q -c -P -o$@ $(BENCH_GUI_CXXFLAGS) .\image.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,321 +1,321 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../build/msw/config.gcc
|
include ../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
BENCH_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
|
BENCH_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
|
||||||
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
|
-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
|
||||||
-I. $(__DLLFLAG_p) -DwxUSE_GUI=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
|
-I. $(__DLLFLAG_p) -DwxUSE_GUI=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
|
||||||
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
||||||
BENCH_OBJECTS = \
|
BENCH_OBJECTS = \
|
||||||
$(OBJS)\bench_bench.o \
|
$(OBJS)\bench_bench.o \
|
||||||
$(OBJS)\bench_datetime.o \
|
$(OBJS)\bench_datetime.o \
|
||||||
$(OBJS)\bench_htmlpars.o \
|
$(OBJS)\bench_htmlpars.o \
|
||||||
$(OBJS)\bench_htmltag.o \
|
$(OBJS)\bench_htmltag.o \
|
||||||
$(OBJS)\bench_ipcclient.o \
|
$(OBJS)\bench_ipcclient.o \
|
||||||
$(OBJS)\bench_log.o \
|
$(OBJS)\bench_log.o \
|
||||||
$(OBJS)\bench_mbconv.o \
|
$(OBJS)\bench_mbconv.o \
|
||||||
$(OBJS)\bench_strings.o \
|
$(OBJS)\bench_strings.o \
|
||||||
$(OBJS)\bench_tls.o \
|
$(OBJS)\bench_tls.o \
|
||||||
$(OBJS)\bench_printfbench.o
|
$(OBJS)\bench_printfbench.o
|
||||||
BENCH_GUI_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
|
BENCH_GUI_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
|
||||||
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -I. $(__DLLFLAG_p) \
|
$(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -I. $(__DLLFLAG_p) \
|
||||||
-I.\..\..\samples -DNOPCH $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
|
-I.\..\..\samples -DNOPCH $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
|
||||||
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
||||||
BENCH_GUI_OBJECTS = \
|
BENCH_GUI_OBJECTS = \
|
||||||
$(OBJS)\bench_gui_sample_rc.o \
|
$(OBJS)\bench_gui_sample_rc.o \
|
||||||
$(OBJS)\bench_gui_bench.o \
|
$(OBJS)\bench_gui_bench.o \
|
||||||
$(OBJS)\bench_gui_image.o
|
$(OBJS)\bench_gui_image.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_NET_p = \
|
__WXLIB_NET_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__bench_gui___depname = $(OBJS)\bench_gui.exe
|
__bench_gui___depname = $(OBJS)\bench_gui.exe
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p_3 = --define __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_3 = --define __WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p_3 = --define wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_3 = --define wxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p_3 = --define NDEBUG
|
__NDEBUG_DEFINE_p_3 = --define NDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p_3 = --define wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_3 = --define wxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p_3 = --define wxNO_RTTI
|
__RTTI_DEFINE_p_3 = --define wxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p_3 = --define wxNO_THREADS
|
__THREAD_DEFINE_p_3 = --define wxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p_3 = --define wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_3 = --define wxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p_3 = --define _UNICODE
|
__UNICODE_DEFINE_p_3 = --define _UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p_3 = --define wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_3 = --define wxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_INCLUDEDIR_p_1 = --include-dir $(CAIRO_ROOT)/include/cairo
|
__CAIRO_INCLUDEDIR_p_1 = --include-dir $(CAIRO_ROOT)/include/cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p_3 = --define WXUSINGDLL
|
__DLLFLAG_p_3 = --define WXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
ifeq ($(USE_STC),1)
|
ifeq ($(USE_STC),1)
|
||||||
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG = -O0
|
__OPTIMIZEFLAG = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG = -O2
|
__OPTIMIZEFLAG = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG = -fno-rtti
|
__RTTIFLAG = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG =
|
__RTTIFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG = -fno-exceptions
|
__EXCEPTIONSFLAG = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG =
|
__EXCEPTIONSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\bench.exe data $(__bench_gui___depname) data-image
|
all: $(OBJS)\bench.exe data $(__bench_gui___depname) data-image
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\bench.exe del $(OBJS)\bench.exe
|
-if exist $(OBJS)\bench.exe del $(OBJS)\bench.exe
|
||||||
-if exist $(OBJS)\bench_gui.exe del $(OBJS)\bench_gui.exe
|
-if exist $(OBJS)\bench_gui.exe del $(OBJS)\bench_gui.exe
|
||||||
|
|
||||||
$(OBJS)\bench.exe: $(BENCH_OBJECTS)
|
$(OBJS)\bench.exe: $(BENCH_OBJECTS)
|
||||||
$(CXX) -o $@ $(BENCH_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(BENCH_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %%f in (htmltest.html) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
for %%f in (htmltest.html) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
||||||
|
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
$(OBJS)\bench_gui.exe: $(BENCH_GUI_OBJECTS) $(OBJS)\bench_gui_sample_rc.o
|
$(OBJS)\bench_gui.exe: $(BENCH_GUI_OBJECTS) $(OBJS)\bench_gui_sample_rc.o
|
||||||
$(CXX) -o $@ $(BENCH_GUI_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(BENCH_GUI_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
endif
|
endif
|
||||||
|
|
||||||
data-image:
|
data-image:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %%f in (../../samples/image/horse.bmp ../../samples/image/horse.jpg ../../samples/image/horse.png ../../samples/image/horse.tif) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
for %%f in (../../samples/image/horse.bmp ../../samples/image/horse.jpg ../../samples/image/horse.png ../../samples/image/horse.tif) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\bench_bench.o: ./bench.cpp
|
$(OBJS)\bench_bench.o: ./bench.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_datetime.o: ./datetime.cpp
|
$(OBJS)\bench_datetime.o: ./datetime.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_htmlpars.o: ./htmlparser/htmlpars.cpp
|
$(OBJS)\bench_htmlpars.o: ./htmlparser/htmlpars.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_htmltag.o: ./htmlparser/htmltag.cpp
|
$(OBJS)\bench_htmltag.o: ./htmlparser/htmltag.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_ipcclient.o: ./ipcclient.cpp
|
$(OBJS)\bench_ipcclient.o: ./ipcclient.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_log.o: ./log.cpp
|
$(OBJS)\bench_log.o: ./log.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_mbconv.o: ./mbconv.cpp
|
$(OBJS)\bench_mbconv.o: ./mbconv.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_strings.o: ./strings.cpp
|
$(OBJS)\bench_strings.o: ./strings.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_tls.o: ./tls.cpp
|
$(OBJS)\bench_tls.o: ./tls.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_printfbench.o: ./printfbench.cpp
|
$(OBJS)\bench_printfbench.o: ./printfbench.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_gui_sample_rc.o: ./../../samples/sample.rc
|
$(OBJS)\bench_gui_sample_rc.o: ./../../samples/sample.rc
|
||||||
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) $(__MSLU_DEFINE_p_3) --include-dir $(SETUPHDIR) --include-dir ./../../include $(__CAIRO_INCLUDEDIR_p_1) --include-dir . $(__DLLFLAG_p_3) --include-dir ./../../samples --define NOPCH
|
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) $(__MSLU_DEFINE_p_3) --include-dir $(SETUPHDIR) --include-dir ./../../include $(__CAIRO_INCLUDEDIR_p_1) --include-dir . $(__DLLFLAG_p_3) --include-dir ./../../samples --define NOPCH
|
||||||
|
|
||||||
$(OBJS)\bench_gui_bench.o: ./bench.cpp
|
$(OBJS)\bench_gui_bench.o: ./bench.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_GUI_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_GUI_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\bench_gui_image.o: ./image.cpp
|
$(OBJS)\bench_gui_image.o: ./image.cpp
|
||||||
$(CXX) -c -o $@ $(BENCH_GUI_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(BENCH_GUI_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
.PHONY: all clean data data-image
|
.PHONY: all clean data data-image
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,471 +1,471 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../build/msw/config.vc>
|
!include <../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
BENCH_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME) /DWIN32 \
|
BENCH_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME) /DWIN32 \
|
||||||
$(__DEBUGINFO) /Fd$(OBJS)\bench.pdb $(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) \
|
$(__DEBUGINFO) /Fd$(OBJS)\bench.pdb $(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) \
|
||||||
/D_CRT_SECURE_NO_DEPRECATE=1 /D_CRT_NON_CONFORMING_SWPRINTFS=1 \
|
/D_CRT_SECURE_NO_DEPRECATE=1 /D_CRT_NON_CONFORMING_SWPRINTFS=1 \
|
||||||
/D_SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p) /D__WXMSW__ \
|
/D_SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p) /D__WXMSW__ \
|
||||||
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
|
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
|
||||||
$(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
|
$(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
|
||||||
$(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
|
$(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /I. $(__DLLFLAG_p) /D_CONSOLE \
|
$(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /I. $(__DLLFLAG_p) /D_CONSOLE \
|
||||||
/DwxUSE_GUI=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) $(CPPFLAGS) $(CXXFLAGS)
|
/DwxUSE_GUI=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
BENCH_OBJECTS = \
|
BENCH_OBJECTS = \
|
||||||
$(OBJS)\bench_bench.obj \
|
$(OBJS)\bench_bench.obj \
|
||||||
$(OBJS)\bench_datetime.obj \
|
$(OBJS)\bench_datetime.obj \
|
||||||
$(OBJS)\bench_htmlpars.obj \
|
$(OBJS)\bench_htmlpars.obj \
|
||||||
$(OBJS)\bench_htmltag.obj \
|
$(OBJS)\bench_htmltag.obj \
|
||||||
$(OBJS)\bench_ipcclient.obj \
|
$(OBJS)\bench_ipcclient.obj \
|
||||||
$(OBJS)\bench_log.obj \
|
$(OBJS)\bench_log.obj \
|
||||||
$(OBJS)\bench_mbconv.obj \
|
$(OBJS)\bench_mbconv.obj \
|
||||||
$(OBJS)\bench_strings.obj \
|
$(OBJS)\bench_strings.obj \
|
||||||
$(OBJS)\bench_tls.obj \
|
$(OBJS)\bench_tls.obj \
|
||||||
$(OBJS)\bench_printfbench.obj
|
$(OBJS)\bench_printfbench.obj
|
||||||
BENCH_GUI_CXXFLAGS = /M$(__RUNTIME_LIBS_26)$(__DEBUGRUNTIME) /DWIN32 \
|
BENCH_GUI_CXXFLAGS = /M$(__RUNTIME_LIBS_26)$(__DEBUGRUNTIME) /DWIN32 \
|
||||||
$(__DEBUGINFO) /Fd$(OBJS)\bench_gui.pdb $(____DEBUGRUNTIME) \
|
$(__DEBUGINFO) /Fd$(OBJS)\bench_gui.pdb $(____DEBUGRUNTIME) \
|
||||||
$(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /I. \
|
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /I. \
|
||||||
$(__DLLFLAG_p) /I.\..\..\samples /DNOPCH /D_CONSOLE $(__RTTIFLAG) \
|
$(__DLLFLAG_p) /I.\..\..\samples /DNOPCH /D_CONSOLE $(__RTTIFLAG) \
|
||||||
$(__EXCEPTIONSFLAG) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
BENCH_GUI_OBJECTS = \
|
BENCH_GUI_OBJECTS = \
|
||||||
$(OBJS)\bench_gui_bench.obj \
|
$(OBJS)\bench_gui_bench.obj \
|
||||||
$(OBJS)\bench_gui_image.obj
|
$(OBJS)\bench_gui_image.obj
|
||||||
BENCH_GUI_RESOURCES = \
|
BENCH_GUI_RESOURCES = \
|
||||||
$(OBJS)\bench_gui_sample.res
|
$(OBJS)\bench_gui_sample.res
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_0)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_0)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_0)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_0)
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG)
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_NET_p = \
|
__WXLIB_NET_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__bench_gui___depname = $(OBJS)\bench_gui.exe
|
__bench_gui___depname = $(OBJS)\bench_gui.exe
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_18 = $(__DEBUGRUNTIME_0)
|
__DEBUGINFO_18 = $(__DEBUGRUNTIME_0)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_18 =
|
__DEBUGINFO_18 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_18 =
|
__DEBUGINFO_18 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_18 = $(__DEBUGRUNTIME_0)
|
__DEBUGINFO_18 = $(__DEBUGRUNTIME_0)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_19_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_19_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_19_p_1 =
|
____DEBUGRUNTIME_19_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_19_p_1 =
|
____DEBUGRUNTIME_19_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_19_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_19_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_26 = D
|
__RUNTIME_LIBS_26 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_26 = $(__THREADSFLAG)
|
__RUNTIME_LIBS_26 = $(__THREADSFLAG)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p_3 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_3 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p_3 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_3 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_3 = /d __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_3 = /d __WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_3 = /d wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_3 = /d wxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p_3 = /d NDEBUG
|
__NDEBUG_DEFINE_p_3 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p_3 = /d NDEBUG
|
__NDEBUG_DEFINE_p_3 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_3 = /d wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_3 = /d wxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_3 = /d wxNO_RTTI
|
__RTTI_DEFINE_p_3 = /d wxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_3 = /d wxNO_THREADS
|
__THREAD_DEFINE_p_3 = /d wxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_3 = /d wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_3 = /d wxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_3 = /d _UNICODE
|
__UNICODE_DEFINE_p_3 = /d _UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_3 = /d wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_3 = /d wxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_3_p = /i $(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_3_p = /i $(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_3 = /d WXUSINGDLL
|
__DLLFLAG_p_3 = /d WXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = /Zi
|
__DEBUGINFO = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = /Zi
|
__DEBUGINFO = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME = /D_DEBUG
|
____DEBUGRUNTIME = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME =
|
____DEBUGRUNTIME =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME =
|
____DEBUGRUNTIME =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME = /D_DEBUG
|
____DEBUGRUNTIME = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME = d
|
__DEBUGRUNTIME = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME =
|
__DEBUGRUNTIME =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME =
|
__DEBUGRUNTIME =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME = d
|
__DEBUGRUNTIME = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_0 =
|
__DEBUGRUNTIME_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_0 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_0 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_0 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_0 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_0 =
|
__DEBUGRUNTIME_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG = /Od
|
__OPTIMIZEFLAG = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG = /O2
|
__OPTIMIZEFLAG = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG = L
|
__THREADSFLAG = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG = T
|
__THREADSFLAG = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG =
|
__RTTIFLAG =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG = /GR
|
__RTTIFLAG = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG =
|
__EXCEPTIONSFLAG =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG = /EHsc
|
__EXCEPTIONSFLAG = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\bench.exe data $(__bench_gui___depname) data-image
|
all: $(OBJS)\bench.exe data $(__bench_gui___depname) data-image
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\bench.exe del $(OBJS)\bench.exe
|
-if exist $(OBJS)\bench.exe del $(OBJS)\bench.exe
|
||||||
-if exist $(OBJS)\bench.ilk del $(OBJS)\bench.ilk
|
-if exist $(OBJS)\bench.ilk del $(OBJS)\bench.ilk
|
||||||
-if exist $(OBJS)\bench.pdb del $(OBJS)\bench.pdb
|
-if exist $(OBJS)\bench.pdb del $(OBJS)\bench.pdb
|
||||||
-if exist $(OBJS)\bench_gui.exe del $(OBJS)\bench_gui.exe
|
-if exist $(OBJS)\bench_gui.exe del $(OBJS)\bench_gui.exe
|
||||||
-if exist $(OBJS)\bench_gui.ilk del $(OBJS)\bench_gui.ilk
|
-if exist $(OBJS)\bench_gui.ilk del $(OBJS)\bench_gui.ilk
|
||||||
-if exist $(OBJS)\bench_gui.pdb del $(OBJS)\bench_gui.pdb
|
-if exist $(OBJS)\bench_gui.pdb del $(OBJS)\bench_gui.pdb
|
||||||
|
|
||||||
$(OBJS)\bench.exe: $(BENCH_OBJECTS)
|
$(OBJS)\bench.exe: $(BENCH_OBJECTS)
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\bench.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\bench.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
|
||||||
$(BENCH_OBJECTS) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(BENCH_OBJECTS) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (htmltest.html) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (htmltest.html) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
$(OBJS)\bench_gui.exe: $(BENCH_GUI_OBJECTS) $(OBJS)\bench_gui_sample.res
|
$(OBJS)\bench_gui.exe: $(BENCH_GUI_OBJECTS) $(OBJS)\bench_gui_sample.res
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\bench_gui.pdb" $(__DEBUGINFO_18) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\bench_gui.pdb" $(__DEBUGINFO_18) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
|
||||||
$(BENCH_GUI_OBJECTS) $(BENCH_GUI_RESOURCES) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(BENCH_GUI_OBJECTS) $(BENCH_GUI_RESOURCES) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
data-image:
|
data-image:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (../../samples/image/horse.bmp ../../samples/image/horse.jpg ../../samples/image/horse.png ../../samples/image/horse.tif) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (../../samples/image/horse.bmp ../../samples/image/horse.jpg ../../samples/image/horse.png ../../samples/image/horse.tif) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\bench_bench.obj: .\bench.cpp
|
$(OBJS)\bench_bench.obj: .\bench.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\bench.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\bench.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_datetime.obj: .\datetime.cpp
|
$(OBJS)\bench_datetime.obj: .\datetime.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\datetime.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\datetime.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_htmlpars.obj: .\htmlparser\htmlpars.cpp
|
$(OBJS)\bench_htmlpars.obj: .\htmlparser\htmlpars.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\htmlparser\htmlpars.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\htmlparser\htmlpars.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_htmltag.obj: .\htmlparser\htmltag.cpp
|
$(OBJS)\bench_htmltag.obj: .\htmlparser\htmltag.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\htmlparser\htmltag.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\htmlparser\htmltag.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_ipcclient.obj: .\ipcclient.cpp
|
$(OBJS)\bench_ipcclient.obj: .\ipcclient.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\ipcclient.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\ipcclient.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_log.obj: .\log.cpp
|
$(OBJS)\bench_log.obj: .\log.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\log.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\log.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_mbconv.obj: .\mbconv.cpp
|
$(OBJS)\bench_mbconv.obj: .\mbconv.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\mbconv.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\mbconv.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_strings.obj: .\strings.cpp
|
$(OBJS)\bench_strings.obj: .\strings.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\strings.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\strings.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_tls.obj: .\tls.cpp
|
$(OBJS)\bench_tls.obj: .\tls.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\tls.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\tls.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_printfbench.obj: .\printfbench.cpp
|
$(OBJS)\bench_printfbench.obj: .\printfbench.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\printfbench.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_CXXFLAGS) .\printfbench.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_gui_sample.res: .\..\..\samples\sample.rc
|
$(OBJS)\bench_gui_sample.res: .\..\..\samples\sample.rc
|
||||||
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_19_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_3) /d __WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) $(__MSLU_DEFINE_p_3) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_3_p) /i . $(__DLLFLAG_p_3) /i .\..\..\samples /d NOPCH /d _CONSOLE .\..\..\samples\sample.rc
|
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_19_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_3) /d __WXMSW__ $(__WXUNIV_DEFINE_p_3) $(__DEBUG_DEFINE_p_3) $(__NDEBUG_DEFINE_p_3) $(__EXCEPTIONS_DEFINE_p_3) $(__RTTI_DEFINE_p_3) $(__THREAD_DEFINE_p_3) $(__UNICODE_DEFINE_p_3) $(__MSLU_DEFINE_p_3) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_3_p) /i . $(__DLLFLAG_p_3) /i .\..\..\samples /d NOPCH /d _CONSOLE .\..\..\samples\sample.rc
|
||||||
|
|
||||||
$(OBJS)\bench_gui_bench.obj: .\bench.cpp
|
$(OBJS)\bench_gui_bench.obj: .\bench.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_GUI_CXXFLAGS) .\bench.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_GUI_CXXFLAGS) .\bench.cpp
|
||||||
|
|
||||||
$(OBJS)\bench_gui_image.obj: .\image.cpp
|
$(OBJS)\bench_gui_image.obj: .\image.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_GUI_CXXFLAGS) .\image.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(BENCH_GUI_CXXFLAGS) .\image.cpp
|
||||||
|
|
||||||
|
|||||||
2028
tests/makefile.bcc
2028
tests/makefile.bcc
File diff suppressed because it is too large
Load Diff
2010
tests/makefile.gcc
2010
tests/makefile.gcc
File diff suppressed because it is too large
Load Diff
2306
tests/makefile.vc
2306
tests/makefile.vc
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,303 +1,303 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="wxemulator"
|
Name="wxemulator"
|
||||||
ProjectGUID="{CFB27C70-5066-53F3-BA02-80AD8FBC1395}">
|
ProjectGUID="{CFB27C70-5066-53F3-BA02-80AD8FBC1395}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\wxemulator"
|
IntermediateDirectory="vc_mswud\wxemulator"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\wxemulator\"
|
ObjectFile="vc_mswud\wxemulator\"
|
||||||
ProgramDataBaseFileName="vc_mswud\wxemulator.pdb"
|
ProgramDataBaseFileName="vc_mswud\wxemulator.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\wxemulator.exe"
|
OutputFile="vc_mswud\wxemulator.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\wxemulator.pdb"
|
ProgramDatabaseFile="vc_mswud\wxemulator.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\wxemulator"
|
IntermediateDirectory="vc_mswu\wxemulator"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\wxemulator\"
|
ObjectFile="vc_mswu\wxemulator\"
|
||||||
ProgramDataBaseFileName="vc_mswu\wxemulator.pdb"
|
ProgramDataBaseFileName="vc_mswu\wxemulator.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\wxemulator.exe"
|
OutputFile="vc_mswu\wxemulator.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\wxemulator.pdb"
|
ProgramDatabaseFile="vc_mswu\wxemulator.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\wxemulator"
|
IntermediateDirectory="vc_mswuddll\wxemulator"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\wxemulator\"
|
ObjectFile="vc_mswuddll\wxemulator\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\wxemulator.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\wxemulator.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\wxemulator.exe"
|
OutputFile="vc_mswuddll\wxemulator.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\wxemulator.pdb"
|
ProgramDatabaseFile="vc_mswuddll\wxemulator.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\wxemulator"
|
IntermediateDirectory="vc_mswudll\wxemulator"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\wxemulator\"
|
ObjectFile="vc_mswudll\wxemulator\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\wxemulator.pdb"
|
ProgramDataBaseFileName="vc_mswudll\wxemulator.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\wxemulator.exe"
|
OutputFile="vc_mswudll\wxemulator.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\wxemulator.pdb"
|
ProgramDatabaseFile="vc_mswudll\wxemulator.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\emulator.cpp">
|
RelativePath=".\emulator.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\samples\sample.rc">
|
RelativePath="..\..\..\samples\sample.rc">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,257 +1,257 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../../build/msw/config.bcc
|
!include ../../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
WXEMULATOR_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
WXEMULATOR_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -I.\..\..\..\samples \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -I.\..\..\..\samples \
|
||||||
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
||||||
WXEMULATOR_OBJECTS = \
|
WXEMULATOR_OBJECTS = \
|
||||||
$(OBJS)\wxemulator_emulator.obj
|
$(OBJS)\wxemulator_emulator.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_2 = -Od
|
__OPTIMIZEFLAG_2 = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_5 =
|
__THREADSFLAG_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_5 = mt
|
__THREADSFLAG_5 = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_6 =
|
__THREADSFLAG_6 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_6 = -tWM
|
__THREADSFLAG_6 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_7 = -tWR
|
__RUNTIME_LIBS_7 = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_7 =
|
__RUNTIME_LIBS_7 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_8 = i
|
__RUNTIME_LIBS_8 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_8 =
|
__RUNTIME_LIBS_8 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = -dWXUSINGDLL
|
__DLLFLAG_p_1 = -dWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\wxemulator.exe data
|
all: $(OBJS)\wxemulator.exe data
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\wxemulator.exe del $(OBJS)\wxemulator.exe
|
-if exist $(OBJS)\wxemulator.exe del $(OBJS)\wxemulator.exe
|
||||||
-if exist $(OBJS)\wxemulator.tds del $(OBJS)\wxemulator.tds
|
-if exist $(OBJS)\wxemulator.tds del $(OBJS)\wxemulator.tds
|
||||||
-if exist $(OBJS)\wxemulator.ilc del $(OBJS)\wxemulator.ilc
|
-if exist $(OBJS)\wxemulator.ilc del $(OBJS)\wxemulator.ilc
|
||||||
-if exist $(OBJS)\wxemulator.ild del $(OBJS)\wxemulator.ild
|
-if exist $(OBJS)\wxemulator.ild del $(OBJS)\wxemulator.ild
|
||||||
-if exist $(OBJS)\wxemulator.ilf del $(OBJS)\wxemulator.ilf
|
-if exist $(OBJS)\wxemulator.ilf del $(OBJS)\wxemulator.ilf
|
||||||
-if exist $(OBJS)\wxemulator.ils del $(OBJS)\wxemulator.ils
|
-if exist $(OBJS)\wxemulator.ils del $(OBJS)\wxemulator.ils
|
||||||
|
|
||||||
$(OBJS)\wxemulator.exe: $(WXEMULATOR_OBJECTS) $(OBJS)\wxemulator_sample.res
|
$(OBJS)\wxemulator.exe: $(WXEMULATOR_OBJECTS) $(OBJS)\wxemulator_sample.res
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
||||||
c0w32.obj $(WXEMULATOR_OBJECTS),$@,, $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\wxemulator_sample.res
|
c0w32.obj $(WXEMULATOR_OBJECTS),$@,, $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\wxemulator_sample.res
|
||||||
|
|
|
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (default.wxe ipaq.wxe bluegradient.jpg ipaq01.jpg) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (default.wxe ipaq.wxe bluegradient.jpg ipaq01.jpg) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\wxemulator_sample.res: .\..\..\..\samples\sample.rc
|
$(OBJS)\wxemulator_sample.res: .\..\..\..\samples\sample.rc
|
||||||
<<<<<<< HEAD
|
<<<<<<< HEAD
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -dNOPCH .\..\..\..\samples\sample.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -dNOPCH .\..\..\..\samples\sample.rc
|
||||||
=======
|
=======
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\..\samples\sample.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\..\samples\sample.rc
|
||||||
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
||||||
|
|
||||||
$(OBJS)\wxemulator_emulator.obj: .\emulator.cpp
|
$(OBJS)\wxemulator_emulator.obj: .\emulator.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(WXEMULATOR_CXXFLAGS) .\emulator.cpp
|
$(CXX) -q -c -P -o$@ $(WXEMULATOR_CXXFLAGS) .\emulator.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,249 +1,249 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../../build/msw/config.gcc
|
include ../../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
WXEMULATOR_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
WXEMULATOR_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
||||||
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
||||||
-I.\..\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
-I.\..\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
||||||
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
||||||
WXEMULATOR_OBJECTS = \
|
WXEMULATOR_OBJECTS = \
|
||||||
$(OBJS)\wxemulator_sample_rc.o \
|
$(OBJS)\wxemulator_sample_rc.o \
|
||||||
$(OBJS)\wxemulator_emulator.o
|
$(OBJS)\wxemulator_emulator.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG_2 = -O0
|
__OPTIMIZEFLAG_2 = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG_5 = -fno-rtti
|
__RTTIFLAG_5 = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG_5 =
|
__RTTIFLAG_5 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG_6 =
|
__EXCEPTIONSFLAG_6 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p_1 = --define WXUSINGDLL
|
__DLLFLAG_p_1 = --define WXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
ifeq ($(USE_STC),1)
|
ifeq ($(USE_STC),1)
|
||||||
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\wxemulator.exe data
|
all: $(OBJS)\wxemulator.exe data
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\wxemulator.exe del $(OBJS)\wxemulator.exe
|
-if exist $(OBJS)\wxemulator.exe del $(OBJS)\wxemulator.exe
|
||||||
|
|
||||||
$(OBJS)\wxemulator.exe: $(WXEMULATOR_OBJECTS) $(OBJS)\wxemulator_sample_rc.o
|
$(OBJS)\wxemulator.exe: $(WXEMULATOR_OBJECTS) $(OBJS)\wxemulator_sample_rc.o
|
||||||
$(CXX) -o $@ $(WXEMULATOR_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(WXEMULATOR_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %%f in (default.wxe ipaq.wxe bluegradient.jpg ipaq01.jpg) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
for %%f in (default.wxe ipaq.wxe bluegradient.jpg ipaq01.jpg) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\wxemulator_sample_rc.o: ./../../../samples/sample.rc
|
$(OBJS)\wxemulator_sample_rc.o: ./../../../samples/sample.rc
|
||||||
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../../samples --define NOPCH
|
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../../samples --define NOPCH
|
||||||
|
|
||||||
$(OBJS)\wxemulator_emulator.o: ./emulator.cpp
|
$(OBJS)\wxemulator_emulator.o: ./emulator.cpp
|
||||||
$(CXX) -c -o $@ $(WXEMULATOR_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(WXEMULATOR_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
.PHONY: all clean data
|
.PHONY: all clean data
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,375 +1,375 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../../build/msw/config.vc>
|
!include <../../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
WXEMULATOR_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
WXEMULATOR_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
||||||
$(__DEBUGINFO_0) /Fd$(OBJS)\wxemulator.pdb $(____DEBUGRUNTIME_3_p) \
|
$(__DEBUGINFO_0) /Fd$(OBJS)\wxemulator.pdb $(____DEBUGRUNTIME_3_p) \
|
||||||
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
||||||
/I. $(__DLLFLAG_p) /D_WINDOWS /I.\..\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
/I. $(__DLLFLAG_p) /D_WINDOWS /I.\..\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
||||||
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
WXEMULATOR_OBJECTS = \
|
WXEMULATOR_OBJECTS = \
|
||||||
$(OBJS)\wxemulator_emulator.obj
|
$(OBJS)\wxemulator_emulator.obj
|
||||||
WXEMULATOR_RESOURCES = \
|
WXEMULATOR_RESOURCES = \
|
||||||
$(OBJS)\wxemulator_sample.res
|
$(OBJS)\wxemulator_sample.res
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_6 = /Od
|
__OPTIMIZEFLAG_6 = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_6 = /O2
|
__OPTIMIZEFLAG_6 = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_9 = L
|
__THREADSFLAG_9 = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_9 = T
|
__THREADSFLAG_9 = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG_11 =
|
__RTTIFLAG_11 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG_11 = /GR
|
__RTTIFLAG_11 = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG_12 =
|
__EXCEPTIONSFLAG_12 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG_12 = /EHsc
|
__EXCEPTIONSFLAG_12 = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = /d WXUSINGDLL
|
__DLLFLAG_p_1 = /d WXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\wxemulator.exe data
|
all: $(OBJS)\wxemulator.exe data
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\wxemulator.exe del $(OBJS)\wxemulator.exe
|
-if exist $(OBJS)\wxemulator.exe del $(OBJS)\wxemulator.exe
|
||||||
-if exist $(OBJS)\wxemulator.ilk del $(OBJS)\wxemulator.ilk
|
-if exist $(OBJS)\wxemulator.ilk del $(OBJS)\wxemulator.ilk
|
||||||
-if exist $(OBJS)\wxemulator.pdb del $(OBJS)\wxemulator.pdb
|
-if exist $(OBJS)\wxemulator.pdb del $(OBJS)\wxemulator.pdb
|
||||||
|
|
||||||
$(OBJS)\wxemulator.exe: $(WXEMULATOR_OBJECTS) $(OBJS)\wxemulator_sample.res
|
$(OBJS)\wxemulator.exe: $(WXEMULATOR_OBJECTS) $(OBJS)\wxemulator_sample.res
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\wxemulator.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\wxemulator.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
||||||
$(WXEMULATOR_OBJECTS) $(WXEMULATOR_RESOURCES) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(WXEMULATOR_OBJECTS) $(WXEMULATOR_RESOURCES) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (default.wxe ipaq.wxe bluegradient.jpg ipaq01.jpg) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (default.wxe ipaq.wxe bluegradient.jpg ipaq01.jpg) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\wxemulator_sample.res: .\..\..\..\samples\sample.rc
|
$(OBJS)\wxemulator_sample.res: .\..\..\..\samples\sample.rc
|
||||||
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\..\samples /d NOPCH .\..\..\..\samples\sample.rc
|
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\..\samples /d NOPCH .\..\..\..\samples\sample.rc
|
||||||
|
|
||||||
$(OBJS)\wxemulator_emulator.obj: .\emulator.cpp
|
$(OBJS)\wxemulator_emulator.obj: .\emulator.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(WXEMULATOR_CXXFLAGS) .\emulator.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(WXEMULATOR_CXXFLAGS) .\emulator.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,25 +1,25 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "execmon", "execmon_vc7.vcproj", "{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "execmon", "execmon_vc7.vcproj", "{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Debug|Win32.ActiveCfg = Debug|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Debug|Win32.Build.0 = Debug|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Release|Win32.ActiveCfg = Release|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Release|Win32.Build.0 = Release|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Release|Win32.Build.0 = Release|Win32
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
@@ -1,295 +1,295 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="execmon"
|
Name="execmon"
|
||||||
ProjectGUID="{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}">
|
ProjectGUID="{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\execmon"
|
IntermediateDirectory="vc_mswud\execmon"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\execmon\"
|
ObjectFile="vc_mswud\execmon\"
|
||||||
ProgramDataBaseFileName="vc_mswud\execmon.pdb"
|
ProgramDataBaseFileName="vc_mswud\execmon.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\execmon.exe"
|
OutputFile="vc_mswud\execmon.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\execmon.pdb"
|
ProgramDatabaseFile="vc_mswud\execmon.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\execmon"
|
IntermediateDirectory="vc_mswu\execmon"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\execmon\"
|
ObjectFile="vc_mswu\execmon\"
|
||||||
ProgramDataBaseFileName="vc_mswu\execmon.pdb"
|
ProgramDataBaseFileName="vc_mswu\execmon.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\execmon.exe"
|
OutputFile="vc_mswu\execmon.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\execmon.pdb"
|
ProgramDatabaseFile="vc_mswu\execmon.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\execmon"
|
IntermediateDirectory="vc_mswuddll\execmon"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\execmon\"
|
ObjectFile="vc_mswuddll\execmon\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\execmon.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\execmon.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\execmon.exe"
|
OutputFile="vc_mswuddll\execmon.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\execmon.pdb"
|
ProgramDatabaseFile="vc_mswuddll\execmon.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\execmon"
|
IntermediateDirectory="vc_mswudll\execmon"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\execmon\"
|
ObjectFile="vc_mswudll\execmon\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\execmon.pdb"
|
ProgramDataBaseFileName="vc_mswudll\execmon.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\execmon.exe"
|
OutputFile="vc_mswudll\execmon.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\execmon.pdb"
|
ProgramDatabaseFile="vc_mswudll\execmon.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\execmon.cpp">
|
RelativePath=".\execmon.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||||
# Visual Studio 2005
|
# Visual Studio 2005
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "execmon", "execmon_vc8.vcproj", "{77853792-0C62-5E96-A5B5-BA0F518B7572}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "execmon", "execmon_vc8.vcproj", "{77853792-0C62-5E96-A5B5-BA0F518B7572}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|Win32.ActiveCfg = Debug|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|Win32.Build.0 = Debug|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|x64.ActiveCfg = Debug|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|x64.Build.0 = Debug|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Debug|x64.Build.0 = Debug|x64
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|Win32.ActiveCfg = Release|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|Win32.Build.0 = Release|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|Win32.Build.0 = Release|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|x64.ActiveCfg = Release|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|x64.ActiveCfg = Release|x64
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|x64.Build.0 = Release|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.Release|x64.Build.0 = Release|x64
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|x64.Build.0 = DLL Release|x64
|
{77853792-0C62-5E96-A5B5-BA0F518B7572}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,38 +1,38 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
# Visual Studio 2008
|
# Visual Studio 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "execmon", "execmon_vc9.vcproj", "{8AF5279F-6710-5392-A32E-993D957C55F8}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "execmon", "execmon_vc9.vcproj", "{8AF5279F-6710-5392-A32E-993D957C55F8}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|Win32.ActiveCfg = Debug|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|Win32.Build.0 = Debug|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|x64.ActiveCfg = Debug|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|x64.Build.0 = Debug|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Debug|x64.Build.0 = Debug|x64
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|Win32.ActiveCfg = Release|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|Win32.Build.0 = Release|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|Win32.Build.0 = Release|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|x64.ActiveCfg = Release|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|x64.ActiveCfg = Release|x64
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|x64.Build.0 = Release|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.Release|x64.Build.0 = Release|x64
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|x64.Build.0 = DLL Release|x64
|
{8AF5279F-6710-5392-A32E-993D957C55F8}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,208 +1,208 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../build/msw/config.bcc
|
!include ../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
EXECMON_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
EXECMON_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
||||||
$(CPPFLAGS) $(CXXFLAGS)
|
$(CPPFLAGS) $(CXXFLAGS)
|
||||||
EXECMON_OBJECTS = \
|
EXECMON_OBJECTS = \
|
||||||
$(OBJS)\execmon_execmon.obj
|
$(OBJS)\execmon_execmon.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
__execmon___depname = $(OBJS)\execmon.exe
|
__execmon___depname = $(OBJS)\execmon.exe
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_2 = -Od
|
__OPTIMIZEFLAG_2 = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_5 =
|
__THREADSFLAG_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_5 = mt
|
__THREADSFLAG_5 = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_6 =
|
__THREADSFLAG_6 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_6 = -tWM
|
__THREADSFLAG_6 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_7 = -tWR
|
__RUNTIME_LIBS_7 = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_7 =
|
__RUNTIME_LIBS_7 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_8 = i
|
__RUNTIME_LIBS_8 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_8 =
|
__RUNTIME_LIBS_8 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(__execmon___depname)
|
all: $(__execmon___depname)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\execmon.exe del $(OBJS)\execmon.exe
|
-if exist $(OBJS)\execmon.exe del $(OBJS)\execmon.exe
|
||||||
-if exist $(OBJS)\execmon.tds del $(OBJS)\execmon.tds
|
-if exist $(OBJS)\execmon.tds del $(OBJS)\execmon.tds
|
||||||
-if exist $(OBJS)\execmon.ilc del $(OBJS)\execmon.ilc
|
-if exist $(OBJS)\execmon.ilc del $(OBJS)\execmon.ilc
|
||||||
-if exist $(OBJS)\execmon.ild del $(OBJS)\execmon.ild
|
-if exist $(OBJS)\execmon.ild del $(OBJS)\execmon.ild
|
||||||
-if exist $(OBJS)\execmon.ilf del $(OBJS)\execmon.ilf
|
-if exist $(OBJS)\execmon.ilf del $(OBJS)\execmon.ilf
|
||||||
-if exist $(OBJS)\execmon.ils del $(OBJS)\execmon.ils
|
-if exist $(OBJS)\execmon.ils del $(OBJS)\execmon.ils
|
||||||
|
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
$(OBJS)\execmon.exe: $(EXECMON_OBJECTS)
|
$(OBJS)\execmon.exe: $(EXECMON_OBJECTS)
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
||||||
c0x32.obj $(EXECMON_OBJECTS),$@,, $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
|
c0x32.obj $(EXECMON_OBJECTS),$@,, $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
|
||||||
|
|
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
$(OBJS)\execmon_execmon.obj: .\execmon.cpp
|
$(OBJS)\execmon_execmon.obj: .\execmon.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(EXECMON_CXXFLAGS) .\execmon.cpp
|
$(CXX) -q -c -P -o$@ $(EXECMON_CXXFLAGS) .\execmon.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,201 +1,201 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../build/msw/config.gcc
|
include ../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
EXECMON_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
EXECMON_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
||||||
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
||||||
$(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
|
$(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
|
||||||
$(CXXFLAGS)
|
$(CXXFLAGS)
|
||||||
EXECMON_OBJECTS = \
|
EXECMON_OBJECTS = \
|
||||||
$(OBJS)\execmon_execmon.o
|
$(OBJS)\execmon_execmon.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_XRC),1)
|
ifeq ($(USE_XRC),1)
|
||||||
__execmon___depname = $(OBJS)\execmon.exe
|
__execmon___depname = $(OBJS)\execmon.exe
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG_2 = -O0
|
__OPTIMIZEFLAG_2 = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG_5 = -fno-rtti
|
__RTTIFLAG_5 = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG_5 =
|
__RTTIFLAG_5 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG_6 =
|
__EXCEPTIONSFLAG_6 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(__execmon___depname)
|
all: $(__execmon___depname)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\execmon.exe del $(OBJS)\execmon.exe
|
-if exist $(OBJS)\execmon.exe del $(OBJS)\execmon.exe
|
||||||
|
|
||||||
ifeq ($(USE_XRC),1)
|
ifeq ($(USE_XRC),1)
|
||||||
$(OBJS)\execmon.exe: $(EXECMON_OBJECTS)
|
$(OBJS)\execmon.exe: $(EXECMON_OBJECTS)
|
||||||
$(CXX) -o $@ $(EXECMON_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(EXECMON_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(OBJS)\execmon_execmon.o: ./execmon.cpp
|
$(OBJS)\execmon_execmon.o: ./execmon.cpp
|
||||||
$(CXX) -c -o $@ $(EXECMON_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(EXECMON_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,307 +1,307 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../build/msw/config.vc>
|
!include <../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
EXECMON_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
EXECMON_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
||||||
$(__DEBUGINFO_0) /Fd$(OBJS)\execmon.pdb $(____DEBUGRUNTIME_3_p) \
|
$(__DEBUGINFO_0) /Fd$(OBJS)\execmon.pdb $(____DEBUGRUNTIME_3_p) \
|
||||||
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. \
|
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. \
|
||||||
$(__DLLFLAG_p) /D_CONSOLE /DwxUSE_GUI=0 $(__RTTIFLAG_11) \
|
$(__DLLFLAG_p) /D_CONSOLE /DwxUSE_GUI=0 $(__RTTIFLAG_11) \
|
||||||
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
EXECMON_OBJECTS = \
|
EXECMON_OBJECTS = \
|
||||||
$(OBJS)\execmon_execmon.obj
|
$(OBJS)\execmon_execmon.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
__execmon___depname = $(OBJS)\execmon.exe
|
__execmon___depname = $(OBJS)\execmon.exe
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_6 = /Od
|
__OPTIMIZEFLAG_6 = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_6 = /O2
|
__OPTIMIZEFLAG_6 = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_9 = L
|
__THREADSFLAG_9 = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_9 = T
|
__THREADSFLAG_9 = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG_11 =
|
__RTTIFLAG_11 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG_11 = /GR
|
__RTTIFLAG_11 = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG_12 =
|
__EXCEPTIONSFLAG_12 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG_12 = /EHsc
|
__EXCEPTIONSFLAG_12 = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(__execmon___depname)
|
all: $(__execmon___depname)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\execmon.exe del $(OBJS)\execmon.exe
|
-if exist $(OBJS)\execmon.exe del $(OBJS)\execmon.exe
|
||||||
-if exist $(OBJS)\execmon.ilk del $(OBJS)\execmon.ilk
|
-if exist $(OBJS)\execmon.ilk del $(OBJS)\execmon.ilk
|
||||||
-if exist $(OBJS)\execmon.pdb del $(OBJS)\execmon.pdb
|
-if exist $(OBJS)\execmon.pdb del $(OBJS)\execmon.pdb
|
||||||
|
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
$(OBJS)\execmon.exe: $(EXECMON_OBJECTS)
|
$(OBJS)\execmon.exe: $(EXECMON_OBJECTS)
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\execmon.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\execmon.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
||||||
$(EXECMON_OBJECTS) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(EXECMON_OBJECTS) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
$(OBJS)\execmon_execmon.obj: .\execmon.cpp
|
$(OBJS)\execmon_execmon.obj: .\execmon.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(EXECMON_CXXFLAGS) .\execmon.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(EXECMON_CXXFLAGS) .\execmon.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,303 +1,303 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="helpview"
|
Name="helpview"
|
||||||
ProjectGUID="{2C458CD3-F33B-5176-B6E9-7B94DADF5CD1}">
|
ProjectGUID="{2C458CD3-F33B-5176-B6E9-7B94DADF5CD1}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\helpview"
|
IntermediateDirectory="vc_mswud\helpview"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\helpview\"
|
ObjectFile="vc_mswud\helpview\"
|
||||||
ProgramDataBaseFileName="vc_mswud\helpview.pdb"
|
ProgramDataBaseFileName="vc_mswud\helpview.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud_net.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud_net.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\helpview.exe"
|
OutputFile="vc_mswud\helpview.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\helpview.pdb"
|
ProgramDatabaseFile="vc_mswud\helpview.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\helpview"
|
IntermediateDirectory="vc_mswu\helpview"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\helpview\"
|
ObjectFile="vc_mswu\helpview\"
|
||||||
ProgramDataBaseFileName="vc_mswu\helpview.pdb"
|
ProgramDataBaseFileName="vc_mswu\helpview.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u_net.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u_net.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\helpview.exe"
|
OutputFile="vc_mswu\helpview.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\helpview.pdb"
|
ProgramDatabaseFile="vc_mswu\helpview.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\helpview"
|
IntermediateDirectory="vc_mswuddll\helpview"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\helpview\"
|
ObjectFile="vc_mswuddll\helpview\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\helpview.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\helpview.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud_net.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud_net.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\helpview.exe"
|
OutputFile="vc_mswuddll\helpview.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\helpview.pdb"
|
ProgramDatabaseFile="vc_mswuddll\helpview.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\helpview"
|
IntermediateDirectory="vc_mswudll\helpview"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\helpview\"
|
ObjectFile="vc_mswudll\helpview\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\helpview.pdb"
|
ProgramDataBaseFileName="vc_mswudll\helpview.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u_net.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u_net.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\helpview.exe"
|
OutputFile="vc_mswudll\helpview.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\helpview.pdb"
|
ProgramDatabaseFile="vc_mswudll\helpview.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\helpview.cpp">
|
RelativePath=".\helpview.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\helpview.rc">
|
RelativePath=".\helpview.rc">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,265 +1,265 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../../build/msw/config.bcc
|
!include ../../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
HELPVIEW_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
HELPVIEW_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -I.\..\..\..\samples \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -I.\..\..\..\samples \
|
||||||
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
||||||
HELPVIEW_OBJECTS = \
|
HELPVIEW_OBJECTS = \
|
||||||
$(OBJS)\helpview_helpview.obj
|
$(OBJS)\helpview_helpview.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_2 = -Od
|
__OPTIMIZEFLAG_2 = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_5 =
|
__THREADSFLAG_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_5 = mt
|
__THREADSFLAG_5 = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_6 =
|
__THREADSFLAG_6 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_6 = -tWM
|
__THREADSFLAG_6 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_7 = -tWR
|
__RUNTIME_LIBS_7 = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_7 =
|
__RUNTIME_LIBS_7 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_8 = i
|
__RUNTIME_LIBS_8 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_8 =
|
__RUNTIME_LIBS_8 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = -dWXUSINGDLL
|
__DLLFLAG_p_1 = -dWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_NET_p = \
|
__WXLIB_NET_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\helpview.exe data
|
all: $(OBJS)\helpview.exe data
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\helpview.exe del $(OBJS)\helpview.exe
|
-if exist $(OBJS)\helpview.exe del $(OBJS)\helpview.exe
|
||||||
-if exist $(OBJS)\helpview.tds del $(OBJS)\helpview.tds
|
-if exist $(OBJS)\helpview.tds del $(OBJS)\helpview.tds
|
||||||
-if exist $(OBJS)\helpview.ilc del $(OBJS)\helpview.ilc
|
-if exist $(OBJS)\helpview.ilc del $(OBJS)\helpview.ilc
|
||||||
-if exist $(OBJS)\helpview.ild del $(OBJS)\helpview.ild
|
-if exist $(OBJS)\helpview.ild del $(OBJS)\helpview.ild
|
||||||
-if exist $(OBJS)\helpview.ilf del $(OBJS)\helpview.ilf
|
-if exist $(OBJS)\helpview.ilf del $(OBJS)\helpview.ilf
|
||||||
-if exist $(OBJS)\helpview.ils del $(OBJS)\helpview.ils
|
-if exist $(OBJS)\helpview.ils del $(OBJS)\helpview.ils
|
||||||
|
|
||||||
$(OBJS)\helpview.exe: $(HELPVIEW_OBJECTS) $(OBJS)\helpview_helpview.res
|
$(OBJS)\helpview.exe: $(HELPVIEW_OBJECTS) $(OBJS)\helpview_helpview.res
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
||||||
c0w32.obj $(HELPVIEW_OBJECTS),$@,, $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\helpview_helpview.res
|
c0w32.obj $(HELPVIEW_OBJECTS),$@,, $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\helpview_helpview.res
|
||||||
|
|
|
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (test.zip) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (test.zip) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\helpview_helpview.obj: .\helpview.cpp
|
$(OBJS)\helpview_helpview.obj: .\helpview.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(HELPVIEW_CXXFLAGS) .\helpview.cpp
|
$(CXX) -q -c -P -o$@ $(HELPVIEW_CXXFLAGS) .\helpview.cpp
|
||||||
|
|
||||||
$(OBJS)\helpview_helpview.res: .\helpview.rc
|
$(OBJS)\helpview_helpview.res: .\helpview.rc
|
||||||
<<<<<<< HEAD
|
<<<<<<< HEAD
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -dNOPCH .\helpview.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -dNOPCH .\helpview.rc
|
||||||
=======
|
=======
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\helpview.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\helpview.rc
|
||||||
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
||||||
|
|
||||||
|
|||||||
@@ -1,257 +1,257 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../../build/msw/config.gcc
|
include ../../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
HELPVIEW_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
HELPVIEW_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
||||||
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
||||||
-I.\..\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
-I.\..\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
||||||
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
||||||
HELPVIEW_OBJECTS = \
|
HELPVIEW_OBJECTS = \
|
||||||
$(OBJS)\helpview_helpview.o \
|
$(OBJS)\helpview_helpview.o \
|
||||||
$(OBJS)\helpview_helpview_rc.o
|
$(OBJS)\helpview_helpview_rc.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG_2 = -O0
|
__OPTIMIZEFLAG_2 = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG_5 = -fno-rtti
|
__RTTIFLAG_5 = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG_5 =
|
__RTTIFLAG_5 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG_6 =
|
__EXCEPTIONSFLAG_6 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p_1 = --define WXUSINGDLL
|
__DLLFLAG_p_1 = --define WXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_NET_p = \
|
__WXLIB_NET_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
ifeq ($(USE_STC),1)
|
ifeq ($(USE_STC),1)
|
||||||
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\helpview.exe data
|
all: $(OBJS)\helpview.exe data
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\helpview.exe del $(OBJS)\helpview.exe
|
-if exist $(OBJS)\helpview.exe del $(OBJS)\helpview.exe
|
||||||
|
|
||||||
$(OBJS)\helpview.exe: $(HELPVIEW_OBJECTS) $(OBJS)\helpview_helpview_rc.o
|
$(OBJS)\helpview.exe: $(HELPVIEW_OBJECTS) $(OBJS)\helpview_helpview_rc.o
|
||||||
$(CXX) -o $@ $(HELPVIEW_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(HELPVIEW_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %%f in (test.zip) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
for %%f in (test.zip) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\helpview_helpview.o: ./helpview.cpp
|
$(OBJS)\helpview_helpview.o: ./helpview.cpp
|
||||||
$(CXX) -c -o $@ $(HELPVIEW_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(HELPVIEW_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\helpview_helpview_rc.o: ./helpview.rc
|
$(OBJS)\helpview_helpview_rc.o: ./helpview.rc
|
||||||
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../../samples --define NOPCH
|
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../../samples --define NOPCH
|
||||||
|
|
||||||
.PHONY: all clean data
|
.PHONY: all clean data
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,383 +1,383 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../../build/msw/config.vc>
|
!include <../../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
HELPVIEW_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
HELPVIEW_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
||||||
$(__DEBUGINFO_0) /Fd$(OBJS)\helpview.pdb $(____DEBUGRUNTIME_3_p) \
|
$(__DEBUGINFO_0) /Fd$(OBJS)\helpview.pdb $(____DEBUGRUNTIME_3_p) \
|
||||||
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
||||||
/I. $(__DLLFLAG_p) /D_WINDOWS /I.\..\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
/I. $(__DLLFLAG_p) /D_WINDOWS /I.\..\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
||||||
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
HELPVIEW_OBJECTS = \
|
HELPVIEW_OBJECTS = \
|
||||||
$(OBJS)\helpview_helpview.obj
|
$(OBJS)\helpview_helpview.obj
|
||||||
HELPVIEW_RESOURCES = \
|
HELPVIEW_RESOURCES = \
|
||||||
$(OBJS)\helpview_helpview.res
|
$(OBJS)\helpview_helpview.res
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_6 = /Od
|
__OPTIMIZEFLAG_6 = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_6 = /O2
|
__OPTIMIZEFLAG_6 = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_9 = L
|
__THREADSFLAG_9 = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_9 = T
|
__THREADSFLAG_9 = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG_11 =
|
__RTTIFLAG_11 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG_11 = /GR
|
__RTTIFLAG_11 = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG_12 =
|
__EXCEPTIONSFLAG_12 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG_12 = /EHsc
|
__EXCEPTIONSFLAG_12 = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = /d WXUSINGDLL
|
__DLLFLAG_p_1 = /d WXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_NET_p = \
|
__WXLIB_NET_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\helpview.exe data
|
all: $(OBJS)\helpview.exe data
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\helpview.exe del $(OBJS)\helpview.exe
|
-if exist $(OBJS)\helpview.exe del $(OBJS)\helpview.exe
|
||||||
-if exist $(OBJS)\helpview.ilk del $(OBJS)\helpview.ilk
|
-if exist $(OBJS)\helpview.ilk del $(OBJS)\helpview.ilk
|
||||||
-if exist $(OBJS)\helpview.pdb del $(OBJS)\helpview.pdb
|
-if exist $(OBJS)\helpview.pdb del $(OBJS)\helpview.pdb
|
||||||
|
|
||||||
$(OBJS)\helpview.exe: $(HELPVIEW_OBJECTS) $(OBJS)\helpview_helpview.res
|
$(OBJS)\helpview.exe: $(HELPVIEW_OBJECTS) $(OBJS)\helpview_helpview.res
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\helpview.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\helpview.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
||||||
$(HELPVIEW_OBJECTS) $(HELPVIEW_RESOURCES) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(HELPVIEW_OBJECTS) $(HELPVIEW_RESOURCES) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
|
|
||||||
data:
|
data:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (test.zip) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (test.zip) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\helpview_helpview.obj: .\helpview.cpp
|
$(OBJS)\helpview_helpview.obj: .\helpview.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(HELPVIEW_CXXFLAGS) .\helpview.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(HELPVIEW_CXXFLAGS) .\helpview.cpp
|
||||||
|
|
||||||
$(OBJS)\helpview_helpview.res: .\helpview.rc
|
$(OBJS)\helpview_helpview.res: .\helpview.rc
|
||||||
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\..\samples /d NOPCH .\helpview.rc
|
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\..\samples /d NOPCH .\helpview.rc
|
||||||
|
|
||||||
|
|||||||
@@ -1,303 +1,303 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="hhp2cached"
|
Name="hhp2cached"
|
||||||
ProjectGUID="{51DFF074-9D93-5E0A-B189-6499B311F719}">
|
ProjectGUID="{51DFF074-9D93-5E0A-B189-6499B311F719}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\hhp2cached"
|
IntermediateDirectory="vc_mswud\hhp2cached"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\hhp2cached\"
|
ObjectFile="vc_mswud\hhp2cached\"
|
||||||
ProgramDataBaseFileName="vc_mswud\hhp2cached.pdb"
|
ProgramDataBaseFileName="vc_mswud\hhp2cached.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\hhp2cached.exe"
|
OutputFile="vc_mswud\hhp2cached.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\hhp2cached.pdb"
|
ProgramDatabaseFile="vc_mswud\hhp2cached.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\hhp2cached"
|
IntermediateDirectory="vc_mswu\hhp2cached"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\hhp2cached\"
|
ObjectFile="vc_mswu\hhp2cached\"
|
||||||
ProgramDataBaseFileName="vc_mswu\hhp2cached.pdb"
|
ProgramDataBaseFileName="vc_mswu\hhp2cached.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\hhp2cached.exe"
|
OutputFile="vc_mswu\hhp2cached.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\hhp2cached.pdb"
|
ProgramDatabaseFile="vc_mswu\hhp2cached.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\hhp2cached"
|
IntermediateDirectory="vc_mswuddll\hhp2cached"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\hhp2cached\"
|
ObjectFile="vc_mswuddll\hhp2cached\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\hhp2cached.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\hhp2cached.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_html.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\hhp2cached.exe"
|
OutputFile="vc_mswuddll\hhp2cached.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\hhp2cached.pdb"
|
ProgramDatabaseFile="vc_mswuddll\hhp2cached.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\hhp2cached"
|
IntermediateDirectory="vc_mswudll\hhp2cached"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\hhp2cached\"
|
ObjectFile="vc_mswudll\hhp2cached\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\hhp2cached.pdb"
|
ProgramDataBaseFileName="vc_mswudll\hhp2cached.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_html.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\hhp2cached.exe"
|
OutputFile="vc_mswudll\hhp2cached.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\hhp2cached.pdb"
|
ProgramDatabaseFile="vc_mswudll\hhp2cached.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;.;.\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\hhp2cached.cpp">
|
RelativePath=".\hhp2cached.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\hhp2cached.rc">
|
RelativePath=".\hhp2cached.rc">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,257 +1,257 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../build/msw/config.bcc
|
!include ../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
HHP2CACHED_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
HHP2CACHED_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -I.\..\..\samples \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -I.\..\..\samples \
|
||||||
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
-DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
||||||
HHP2CACHED_OBJECTS = \
|
HHP2CACHED_OBJECTS = \
|
||||||
$(OBJS)\hhp2cached_hhp2cached.obj
|
$(OBJS)\hhp2cached_hhp2cached.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_2 = -Od
|
__OPTIMIZEFLAG_2 = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_5 =
|
__THREADSFLAG_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_5 = mt
|
__THREADSFLAG_5 = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_6 =
|
__THREADSFLAG_6 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_6 = -tWM
|
__THREADSFLAG_6 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_7 = -tWR
|
__RUNTIME_LIBS_7 = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_7 =
|
__RUNTIME_LIBS_7 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_8 = i
|
__RUNTIME_LIBS_8 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_8 =
|
__RUNTIME_LIBS_8 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = -dWXUSINGDLL
|
__DLLFLAG_p_1 = -dWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\hhp2cached.exe
|
all: $(OBJS)\hhp2cached.exe
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\hhp2cached.exe del $(OBJS)\hhp2cached.exe
|
-if exist $(OBJS)\hhp2cached.exe del $(OBJS)\hhp2cached.exe
|
||||||
-if exist $(OBJS)\hhp2cached.tds del $(OBJS)\hhp2cached.tds
|
-if exist $(OBJS)\hhp2cached.tds del $(OBJS)\hhp2cached.tds
|
||||||
-if exist $(OBJS)\hhp2cached.ilc del $(OBJS)\hhp2cached.ilc
|
-if exist $(OBJS)\hhp2cached.ilc del $(OBJS)\hhp2cached.ilc
|
||||||
-if exist $(OBJS)\hhp2cached.ild del $(OBJS)\hhp2cached.ild
|
-if exist $(OBJS)\hhp2cached.ild del $(OBJS)\hhp2cached.ild
|
||||||
-if exist $(OBJS)\hhp2cached.ilf del $(OBJS)\hhp2cached.ilf
|
-if exist $(OBJS)\hhp2cached.ilf del $(OBJS)\hhp2cached.ilf
|
||||||
-if exist $(OBJS)\hhp2cached.ils del $(OBJS)\hhp2cached.ils
|
-if exist $(OBJS)\hhp2cached.ils del $(OBJS)\hhp2cached.ils
|
||||||
|
|
||||||
$(OBJS)\hhp2cached.exe: $(HHP2CACHED_OBJECTS) $(OBJS)\hhp2cached_hhp2cached.res
|
$(OBJS)\hhp2cached.exe: $(HHP2CACHED_OBJECTS) $(OBJS)\hhp2cached_hhp2cached.res
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
||||||
c0w32.obj $(HHP2CACHED_OBJECTS),$@,, $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\hhp2cached_hhp2cached.res
|
c0w32.obj $(HHP2CACHED_OBJECTS),$@,, $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\hhp2cached_hhp2cached.res
|
||||||
|
|
|
|
||||||
|
|
||||||
$(OBJS)\hhp2cached_hhp2cached.obj: .\hhp2cached.cpp
|
$(OBJS)\hhp2cached_hhp2cached.obj: .\hhp2cached.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(HHP2CACHED_CXXFLAGS) .\hhp2cached.cpp
|
$(CXX) -q -c -P -o$@ $(HHP2CACHED_CXXFLAGS) .\hhp2cached.cpp
|
||||||
|
|
||||||
$(OBJS)\hhp2cached_hhp2cached.res: .\hhp2cached.rc
|
$(OBJS)\hhp2cached_hhp2cached.res: .\hhp2cached.rc
|
||||||
<<<<<<< HEAD
|
<<<<<<< HEAD
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\samples -dNOPCH .\hhp2cached.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\samples -dNOPCH .\hhp2cached.rc
|
||||||
=======
|
=======
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\hhp2cached.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\hhp2cached.rc
|
||||||
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
||||||
|
|
||||||
|
|||||||
@@ -1,249 +1,249 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../build/msw/config.gcc
|
include ../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
HHP2CACHED_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
HHP2CACHED_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
||||||
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
||||||
-I.\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
-I.\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
||||||
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
||||||
HHP2CACHED_OBJECTS = \
|
HHP2CACHED_OBJECTS = \
|
||||||
$(OBJS)\hhp2cached_hhp2cached.o \
|
$(OBJS)\hhp2cached_hhp2cached.o \
|
||||||
$(OBJS)\hhp2cached_hhp2cached_rc.o
|
$(OBJS)\hhp2cached_hhp2cached_rc.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG_2 = -O0
|
__OPTIMIZEFLAG_2 = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG_5 = -fno-rtti
|
__RTTIFLAG_5 = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG_5 =
|
__RTTIFLAG_5 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG_6 =
|
__EXCEPTIONSFLAG_6 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p_1 = --define WXUSINGDLL
|
__DLLFLAG_p_1 = --define WXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
ifeq ($(USE_STC),1)
|
ifeq ($(USE_STC),1)
|
||||||
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\hhp2cached.exe
|
all: $(OBJS)\hhp2cached.exe
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\hhp2cached.exe del $(OBJS)\hhp2cached.exe
|
-if exist $(OBJS)\hhp2cached.exe del $(OBJS)\hhp2cached.exe
|
||||||
|
|
||||||
$(OBJS)\hhp2cached.exe: $(HHP2CACHED_OBJECTS) $(OBJS)\hhp2cached_hhp2cached_rc.o
|
$(OBJS)\hhp2cached.exe: $(HHP2CACHED_OBJECTS) $(OBJS)\hhp2cached_hhp2cached_rc.o
|
||||||
$(CXX) -o $@ $(HHP2CACHED_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(HHP2CACHED_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
|
|
||||||
$(OBJS)\hhp2cached_hhp2cached.o: ./hhp2cached.cpp
|
$(OBJS)\hhp2cached_hhp2cached.o: ./hhp2cached.cpp
|
||||||
$(CXX) -c -o $@ $(HHP2CACHED_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(HHP2CACHED_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\hhp2cached_hhp2cached_rc.o: ./hhp2cached.rc
|
$(OBJS)\hhp2cached_hhp2cached_rc.o: ./hhp2cached.rc
|
||||||
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../samples --define NOPCH
|
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../samples --define NOPCH
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,375 +1,375 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../build/msw/config.vc>
|
!include <../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
HHP2CACHED_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
HHP2CACHED_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
||||||
$(__DEBUGINFO_0) /Fd$(OBJS)\hhp2cached.pdb $(____DEBUGRUNTIME_3_p) \
|
$(__DEBUGINFO_0) /Fd$(OBJS)\hhp2cached.pdb $(____DEBUGRUNTIME_3_p) \
|
||||||
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. \
|
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. \
|
||||||
$(__DLLFLAG_p) /D_WINDOWS /I.\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
$(__DLLFLAG_p) /D_WINDOWS /I.\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
||||||
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
HHP2CACHED_OBJECTS = \
|
HHP2CACHED_OBJECTS = \
|
||||||
$(OBJS)\hhp2cached_hhp2cached.obj
|
$(OBJS)\hhp2cached_hhp2cached.obj
|
||||||
HHP2CACHED_RESOURCES = \
|
HHP2CACHED_RESOURCES = \
|
||||||
$(OBJS)\hhp2cached_hhp2cached.res
|
$(OBJS)\hhp2cached_hhp2cached.res
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_6 = /Od
|
__OPTIMIZEFLAG_6 = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_6 = /O2
|
__OPTIMIZEFLAG_6 = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_9 = L
|
__THREADSFLAG_9 = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_9 = T
|
__THREADSFLAG_9 = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG_11 =
|
__RTTIFLAG_11 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG_11 = /GR
|
__RTTIFLAG_11 = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG_12 =
|
__EXCEPTIONSFLAG_12 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG_12 = /EHsc
|
__EXCEPTIONSFLAG_12 = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = /d WXUSINGDLL
|
__DLLFLAG_p_1 = /d WXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\hhp2cached.exe
|
all: $(OBJS)\hhp2cached.exe
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\hhp2cached.exe del $(OBJS)\hhp2cached.exe
|
-if exist $(OBJS)\hhp2cached.exe del $(OBJS)\hhp2cached.exe
|
||||||
-if exist $(OBJS)\hhp2cached.ilk del $(OBJS)\hhp2cached.ilk
|
-if exist $(OBJS)\hhp2cached.ilk del $(OBJS)\hhp2cached.ilk
|
||||||
-if exist $(OBJS)\hhp2cached.pdb del $(OBJS)\hhp2cached.pdb
|
-if exist $(OBJS)\hhp2cached.pdb del $(OBJS)\hhp2cached.pdb
|
||||||
|
|
||||||
$(OBJS)\hhp2cached.exe: $(HHP2CACHED_OBJECTS) $(OBJS)\hhp2cached_hhp2cached.res
|
$(OBJS)\hhp2cached.exe: $(HHP2CACHED_OBJECTS) $(OBJS)\hhp2cached_hhp2cached.res
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\hhp2cached.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\hhp2cached.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
||||||
$(HHP2CACHED_OBJECTS) $(HHP2CACHED_RESOURCES) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(HHP2CACHED_OBJECTS) $(HHP2CACHED_RESOURCES) $(__WXLIB_HTML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
|
|
||||||
$(OBJS)\hhp2cached_hhp2cached.obj: .\hhp2cached.cpp
|
$(OBJS)\hhp2cached_hhp2cached.obj: .\hhp2cached.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(HHP2CACHED_CXXFLAGS) .\hhp2cached.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(HHP2CACHED_CXXFLAGS) .\hhp2cached.cpp
|
||||||
|
|
||||||
$(OBJS)\hhp2cached_hhp2cached.res: .\hhp2cached.rc
|
$(OBJS)\hhp2cached_hhp2cached.res: .\hhp2cached.rc
|
||||||
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\hhp2cached.rc
|
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\hhp2cached.rc
|
||||||
|
|
||||||
|
|||||||
@@ -1,46 +1,46 @@
|
|||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
Project: "ifacecheck"=ifacecheck.dsp - Package Owner=<4>
|
Project: "ifacecheck"=ifacecheck.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name xml
|
Project_Dep_Name xml
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name base
|
Project_Dep_Name base
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "xml"=..\..\..\build\msw\wx_xml.dsp - Package Owner=<4>
|
Project: "xml"=..\..\..\build\msw\wx_xml.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "base"=..\..\..\build\msw\wx_base.dsp - Package Owner=<4>
|
Project: "base"=..\..\..\build\msw\wx_base.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
|||||||
@@ -1,25 +1,25 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifacecheck", "ifacecheck_vc7.vcproj", "{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifacecheck", "ifacecheck_vc7.vcproj", "{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Debug|Win32.ActiveCfg = Debug|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Debug|Win32.Build.0 = Debug|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Release|Win32.ActiveCfg = Release|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Release|Win32.Build.0 = Release|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Release|Win32.Build.0 = Release|Win32
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
@@ -1,306 +1,306 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="ifacecheck"
|
Name="ifacecheck"
|
||||||
ProjectGUID="{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}">
|
ProjectGUID="{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\ifacecheck"
|
IntermediateDirectory="vc_mswud\ifacecheck"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\ifacecheck\"
|
ObjectFile="vc_mswud\ifacecheck\"
|
||||||
ProgramDataBaseFileName="vc_mswud\ifacecheck.pdb"
|
ProgramDataBaseFileName="vc_mswud\ifacecheck.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\ifacecheck.exe"
|
OutputFile="vc_mswud\ifacecheck.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\ifacecheck.pdb"
|
ProgramDatabaseFile="vc_mswud\ifacecheck.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\ifacecheck"
|
IntermediateDirectory="vc_mswu\ifacecheck"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\ifacecheck\"
|
ObjectFile="vc_mswu\ifacecheck\"
|
||||||
ProgramDataBaseFileName="vc_mswu\ifacecheck.pdb"
|
ProgramDataBaseFileName="vc_mswu\ifacecheck.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\ifacecheck.exe"
|
OutputFile="vc_mswu\ifacecheck.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\ifacecheck.pdb"
|
ProgramDatabaseFile="vc_mswu\ifacecheck.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\ifacecheck"
|
IntermediateDirectory="vc_mswuddll\ifacecheck"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\ifacecheck\"
|
ObjectFile="vc_mswuddll\ifacecheck\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\ifacecheck.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\ifacecheck.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\ifacecheck.exe"
|
OutputFile="vc_mswuddll\ifacecheck.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\ifacecheck.pdb"
|
ProgramDatabaseFile="vc_mswuddll\ifacecheck.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\ifacecheck"
|
IntermediateDirectory="vc_mswudll\ifacecheck"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\ifacecheck\"
|
ObjectFile="vc_mswudll\ifacecheck\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\ifacecheck.pdb"
|
ProgramDataBaseFileName="vc_mswudll\ifacecheck.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\ifacecheck.exe"
|
OutputFile="vc_mswudll\ifacecheck.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\ifacecheck.pdb"
|
ProgramDatabaseFile="vc_mswudll\ifacecheck.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\ifacecheck.cpp">
|
RelativePath=".\ifacecheck.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\xmlparser.cpp">
|
RelativePath=".\xmlparser.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\xmlparser.h">
|
RelativePath=".\xmlparser.h">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||||
# Visual Studio 2005
|
# Visual Studio 2005
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifacecheck", "ifacecheck_vc8.vcproj", "{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifacecheck", "ifacecheck_vc8.vcproj", "{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|Win32.ActiveCfg = Debug|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|Win32.Build.0 = Debug|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|x64.ActiveCfg = Debug|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|x64.Build.0 = Debug|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Debug|x64.Build.0 = Debug|x64
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|Win32.ActiveCfg = Release|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|Win32.Build.0 = Release|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|Win32.Build.0 = Release|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|x64.ActiveCfg = Release|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|x64.ActiveCfg = Release|x64
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|x64.Build.0 = Release|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.Release|x64.Build.0 = Release|x64
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|x64.Build.0 = DLL Release|x64
|
{82C85703-712C-59F7-9E08-9F8EDE5D9DDF}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,38 +1,38 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
# Visual Studio 2008
|
# Visual Studio 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifacecheck", "ifacecheck_vc9.vcproj", "{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifacecheck", "ifacecheck_vc9.vcproj", "{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|Win32.ActiveCfg = Debug|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|Win32.Build.0 = Debug|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|x64.ActiveCfg = Debug|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|x64.Build.0 = Debug|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Debug|x64.Build.0 = Debug|x64
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|Win32.ActiveCfg = Release|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|Win32.Build.0 = Release|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|Win32.Build.0 = Release|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|x64.ActiveCfg = Release|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|x64.ActiveCfg = Release|x64
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|x64.Build.0 = Release|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.Release|x64.Build.0 = Release|x64
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|x64.Build.0 = DLL Release|x64
|
{C15BEEE5-A7F4-59AF-88F0-B9C94DFA8EAA}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,211 +1,211 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../../build/msw/config.bcc
|
!include ../../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
IFACECHECK_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
IFACECHECK_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
||||||
$(CPPFLAGS) $(CXXFLAGS)
|
$(CPPFLAGS) $(CXXFLAGS)
|
||||||
IFACECHECK_OBJECTS = \
|
IFACECHECK_OBJECTS = \
|
||||||
$(OBJS)\ifacecheck_ifacecheck.obj \
|
$(OBJS)\ifacecheck_ifacecheck.obj \
|
||||||
$(OBJS)\ifacecheck_xmlparser.obj
|
$(OBJS)\ifacecheck_xmlparser.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_2 = -Od
|
__OPTIMIZEFLAG_2 = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_5 =
|
__THREADSFLAG_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_5 = mt
|
__THREADSFLAG_5 = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_6 =
|
__THREADSFLAG_6 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_6 = -tWM
|
__THREADSFLAG_6 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_7 = -tWR
|
__RUNTIME_LIBS_7 = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_7 =
|
__RUNTIME_LIBS_7 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_8 = i
|
__RUNTIME_LIBS_8 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_8 =
|
__RUNTIME_LIBS_8 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\ifacecheck.exe
|
all: $(OBJS)\ifacecheck.exe
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\ifacecheck.exe del $(OBJS)\ifacecheck.exe
|
-if exist $(OBJS)\ifacecheck.exe del $(OBJS)\ifacecheck.exe
|
||||||
-if exist $(OBJS)\ifacecheck.tds del $(OBJS)\ifacecheck.tds
|
-if exist $(OBJS)\ifacecheck.tds del $(OBJS)\ifacecheck.tds
|
||||||
-if exist $(OBJS)\ifacecheck.ilc del $(OBJS)\ifacecheck.ilc
|
-if exist $(OBJS)\ifacecheck.ilc del $(OBJS)\ifacecheck.ilc
|
||||||
-if exist $(OBJS)\ifacecheck.ild del $(OBJS)\ifacecheck.ild
|
-if exist $(OBJS)\ifacecheck.ild del $(OBJS)\ifacecheck.ild
|
||||||
-if exist $(OBJS)\ifacecheck.ilf del $(OBJS)\ifacecheck.ilf
|
-if exist $(OBJS)\ifacecheck.ilf del $(OBJS)\ifacecheck.ilf
|
||||||
-if exist $(OBJS)\ifacecheck.ils del $(OBJS)\ifacecheck.ils
|
-if exist $(OBJS)\ifacecheck.ils del $(OBJS)\ifacecheck.ils
|
||||||
|
|
||||||
$(OBJS)\ifacecheck.exe: $(IFACECHECK_OBJECTS)
|
$(OBJS)\ifacecheck.exe: $(IFACECHECK_OBJECTS)
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
||||||
c0x32.obj $(IFACECHECK_OBJECTS),$@,, $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
|
c0x32.obj $(IFACECHECK_OBJECTS),$@,, $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
|
||||||
|
|
|
|
||||||
|
|
||||||
$(OBJS)\ifacecheck_ifacecheck.obj: .\ifacecheck.cpp
|
$(OBJS)\ifacecheck_ifacecheck.obj: .\ifacecheck.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(IFACECHECK_CXXFLAGS) .\ifacecheck.cpp
|
$(CXX) -q -c -P -o$@ $(IFACECHECK_CXXFLAGS) .\ifacecheck.cpp
|
||||||
|
|
||||||
$(OBJS)\ifacecheck_xmlparser.obj: .\xmlparser.cpp
|
$(OBJS)\ifacecheck_xmlparser.obj: .\xmlparser.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(IFACECHECK_CXXFLAGS) .\xmlparser.cpp
|
$(CXX) -q -c -P -o$@ $(IFACECHECK_CXXFLAGS) .\xmlparser.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,204 +1,204 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../../build/msw/config.gcc
|
include ../../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
IFACECHECK_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
IFACECHECK_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
||||||
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
||||||
$(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
|
$(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
|
||||||
$(CXXFLAGS)
|
$(CXXFLAGS)
|
||||||
IFACECHECK_OBJECTS = \
|
IFACECHECK_OBJECTS = \
|
||||||
$(OBJS)\ifacecheck_ifacecheck.o \
|
$(OBJS)\ifacecheck_ifacecheck.o \
|
||||||
$(OBJS)\ifacecheck_xmlparser.o
|
$(OBJS)\ifacecheck_xmlparser.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG_2 = -O0
|
__OPTIMIZEFLAG_2 = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG_5 = -fno-rtti
|
__RTTIFLAG_5 = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG_5 =
|
__RTTIFLAG_5 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG_6 =
|
__EXCEPTIONSFLAG_6 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\ifacecheck.exe
|
all: $(OBJS)\ifacecheck.exe
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\ifacecheck.exe del $(OBJS)\ifacecheck.exe
|
-if exist $(OBJS)\ifacecheck.exe del $(OBJS)\ifacecheck.exe
|
||||||
|
|
||||||
$(OBJS)\ifacecheck.exe: $(IFACECHECK_OBJECTS)
|
$(OBJS)\ifacecheck.exe: $(IFACECHECK_OBJECTS)
|
||||||
$(CXX) -o $@ $(IFACECHECK_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(IFACECHECK_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
|
|
||||||
$(OBJS)\ifacecheck_ifacecheck.o: ./ifacecheck.cpp
|
$(OBJS)\ifacecheck_ifacecheck.o: ./ifacecheck.cpp
|
||||||
$(CXX) -c -o $@ $(IFACECHECK_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(IFACECHECK_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\ifacecheck_xmlparser.o: ./xmlparser.cpp
|
$(OBJS)\ifacecheck_xmlparser.o: ./xmlparser.cpp
|
||||||
$(CXX) -c -o $@ $(IFACECHECK_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(IFACECHECK_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,310 +1,310 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../../build/msw/config.vc>
|
!include <../../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
IFACECHECK_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
IFACECHECK_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
||||||
$(__DEBUGINFO_0) /Fd$(OBJS)\ifacecheck.pdb $(____DEBUGRUNTIME_3_p) \
|
$(__DEBUGINFO_0) /Fd$(OBJS)\ifacecheck.pdb $(____DEBUGRUNTIME_3_p) \
|
||||||
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
||||||
/I. $(__DLLFLAG_p) /D_CONSOLE /DwxUSE_GUI=0 $(__RTTIFLAG_11) \
|
/I. $(__DLLFLAG_p) /D_CONSOLE /DwxUSE_GUI=0 $(__RTTIFLAG_11) \
|
||||||
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
IFACECHECK_OBJECTS = \
|
IFACECHECK_OBJECTS = \
|
||||||
$(OBJS)\ifacecheck_ifacecheck.obj \
|
$(OBJS)\ifacecheck_ifacecheck.obj \
|
||||||
$(OBJS)\ifacecheck_xmlparser.obj
|
$(OBJS)\ifacecheck_xmlparser.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_6 = /Od
|
__OPTIMIZEFLAG_6 = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_6 = /O2
|
__OPTIMIZEFLAG_6 = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_9 = L
|
__THREADSFLAG_9 = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_9 = T
|
__THREADSFLAG_9 = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG_11 =
|
__RTTIFLAG_11 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG_11 = /GR
|
__RTTIFLAG_11 = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG_12 =
|
__EXCEPTIONSFLAG_12 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG_12 = /EHsc
|
__EXCEPTIONSFLAG_12 = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\ifacecheck.exe
|
all: $(OBJS)\ifacecheck.exe
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\ifacecheck.exe del $(OBJS)\ifacecheck.exe
|
-if exist $(OBJS)\ifacecheck.exe del $(OBJS)\ifacecheck.exe
|
||||||
-if exist $(OBJS)\ifacecheck.ilk del $(OBJS)\ifacecheck.ilk
|
-if exist $(OBJS)\ifacecheck.ilk del $(OBJS)\ifacecheck.ilk
|
||||||
-if exist $(OBJS)\ifacecheck.pdb del $(OBJS)\ifacecheck.pdb
|
-if exist $(OBJS)\ifacecheck.pdb del $(OBJS)\ifacecheck.pdb
|
||||||
|
|
||||||
$(OBJS)\ifacecheck.exe: $(IFACECHECK_OBJECTS)
|
$(OBJS)\ifacecheck.exe: $(IFACECHECK_OBJECTS)
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\ifacecheck.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\ifacecheck.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
||||||
$(IFACECHECK_OBJECTS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(IFACECHECK_OBJECTS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
|
|
||||||
$(OBJS)\ifacecheck_ifacecheck.obj: .\ifacecheck.cpp
|
$(OBJS)\ifacecheck_ifacecheck.obj: .\ifacecheck.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(IFACECHECK_CXXFLAGS) .\ifacecheck.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(IFACECHECK_CXXFLAGS) .\ifacecheck.cpp
|
||||||
|
|
||||||
$(OBJS)\ifacecheck_xmlparser.obj: .\xmlparser.cpp
|
$(OBJS)\ifacecheck_xmlparser.obj: .\xmlparser.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(IFACECHECK_CXXFLAGS) .\xmlparser.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(IFACECHECK_CXXFLAGS) .\xmlparser.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,124 +1,124 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../build/msw/config.bcc
|
!include ../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
|
MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
|
||||||
-DCXXFLAGS="$(CXXFLAGS)" -DCPPFLAGS="$(CPPFLAGS)" -DLDFLAGS="$(LDFLAGS)" \
|
-DCXXFLAGS="$(CXXFLAGS)" -DCPPFLAGS="$(CPPFLAGS)" -DLDFLAGS="$(LDFLAGS)" \
|
||||||
-DCPP="$(CPP)" -DSHARED="$(SHARED)" -DTOOLKIT_VERSION="$(TOOLKIT_VERSION)" \
|
-DCPP="$(CPP)" -DSHARED="$(SHARED)" -DTOOLKIT_VERSION="$(TOOLKIT_VERSION)" \
|
||||||
-DWXUNIV="$(WXUNIV)" -DUNICODE="$(UNICODE)" -DMSLU="$(MSLU)" \
|
-DWXUNIV="$(WXUNIV)" -DUNICODE="$(UNICODE)" -DMSLU="$(MSLU)" \
|
||||||
-DBUILD="$(BUILD)" -DDEBUG_INFO="$(DEBUG_INFO)" \
|
-DBUILD="$(BUILD)" -DDEBUG_INFO="$(DEBUG_INFO)" \
|
||||||
-DDEBUG_FLAG="$(DEBUG_FLAG)" -DMONOLITHIC="$(MONOLITHIC)" \
|
-DDEBUG_FLAG="$(DEBUG_FLAG)" -DMONOLITHIC="$(MONOLITHIC)" \
|
||||||
-DUSE_GUI="$(USE_GUI)" -DUSE_HTML="$(USE_HTML)" \
|
-DUSE_GUI="$(USE_GUI)" -DUSE_HTML="$(USE_HTML)" \
|
||||||
-DUSE_WEBVIEW="$(USE_WEBVIEW)" -DUSE_MEDIA="$(USE_MEDIA)" \
|
-DUSE_WEBVIEW="$(USE_WEBVIEW)" -DUSE_MEDIA="$(USE_MEDIA)" \
|
||||||
-DUSE_XRC="$(USE_XRC)" -DUSE_AUI="$(USE_AUI)" -DUSE_RIBBON="$(USE_RIBBON)" \
|
-DUSE_XRC="$(USE_XRC)" -DUSE_AUI="$(USE_AUI)" -DUSE_RIBBON="$(USE_RIBBON)" \
|
||||||
-DUSE_PROPGRID="$(USE_PROPGRID)" -DUSE_RICHTEXT="$(USE_RICHTEXT)" \
|
-DUSE_PROPGRID="$(USE_PROPGRID)" -DUSE_RICHTEXT="$(USE_RICHTEXT)" \
|
||||||
-DUSE_STC="$(USE_STC)" -DUSE_OPENGL="$(USE_OPENGL)" -DUSE_QA="$(USE_QA)" \
|
-DUSE_STC="$(USE_STC)" -DUSE_OPENGL="$(USE_OPENGL)" -DUSE_QA="$(USE_QA)" \
|
||||||
-DUSE_EXCEPTIONS="$(USE_EXCEPTIONS)" -DUSE_RTTI="$(USE_RTTI)" \
|
-DUSE_EXCEPTIONS="$(USE_EXCEPTIONS)" -DUSE_RTTI="$(USE_RTTI)" \
|
||||||
-DUSE_THREADS="$(USE_THREADS)" -DUSE_CAIRO="$(USE_CAIRO)" \
|
-DUSE_THREADS="$(USE_THREADS)" -DUSE_CAIRO="$(USE_CAIRO)" \
|
||||||
-DOFFICIAL_BUILD="$(OFFICIAL_BUILD)" -DVENDOR="$(VENDOR)" \
|
-DOFFICIAL_BUILD="$(OFFICIAL_BUILD)" -DVENDOR="$(VENDOR)" \
|
||||||
-DWX_FLAVOUR="$(WX_FLAVOUR)" -DWX_LIB_FLAVOUR="$(WX_LIB_FLAVOUR)" \
|
-DWX_FLAVOUR="$(WX_FLAVOUR)" -DWX_LIB_FLAVOUR="$(WX_LIB_FLAVOUR)" \
|
||||||
-DCFG="$(CFG)" -DCPPUNIT_CFLAGS="$(CPPUNIT_CFLAGS)" \
|
-DCFG="$(CFG)" -DCPPUNIT_CFLAGS="$(CPPUNIT_CFLAGS)" \
|
||||||
-DCPPUNIT_LIBS="$(CPPUNIT_LIBS)" -DRUNTIME_LIBS="$(RUNTIME_LIBS)"
|
-DCPPUNIT_LIBS="$(CPPUNIT_LIBS)" -DRUNTIME_LIBS="$(RUNTIME_LIBS)"
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: emulator execmon helpview hhp2cached ifacecheck screenshotgen wxrc
|
all: emulator execmon helpview hhp2cached ifacecheck screenshotgen wxrc
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist .\*.obj del .\*.obj
|
-if exist .\*.obj del .\*.obj
|
||||||
-if exist .\*.res del .\*.res
|
-if exist .\*.res del .\*.res
|
||||||
-if exist .\*.csm del .\*.csm
|
-if exist .\*.csm del .\*.csm
|
||||||
@echo cd emulator\src >emulator.bat
|
@echo cd emulator\src >emulator.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>emulator.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>emulator.bat
|
||||||
call emulator.bat
|
call emulator.bat
|
||||||
@del emulator.bat
|
@del emulator.bat
|
||||||
@echo cd execmon >execmon.bat
|
@echo cd execmon >execmon.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>execmon.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>execmon.bat
|
||||||
call execmon.bat
|
call execmon.bat
|
||||||
@del execmon.bat
|
@del execmon.bat
|
||||||
@echo cd helpview\src >helpview.bat
|
@echo cd helpview\src >helpview.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>helpview.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>helpview.bat
|
||||||
call helpview.bat
|
call helpview.bat
|
||||||
@del helpview.bat
|
@del helpview.bat
|
||||||
@echo cd hhp2cached >hhp2cached.bat
|
@echo cd hhp2cached >hhp2cached.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>hhp2cached.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>hhp2cached.bat
|
||||||
call hhp2cached.bat
|
call hhp2cached.bat
|
||||||
@del hhp2cached.bat
|
@del hhp2cached.bat
|
||||||
@echo cd ifacecheck\src >ifacecheck.bat
|
@echo cd ifacecheck\src >ifacecheck.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>ifacecheck.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>ifacecheck.bat
|
||||||
call ifacecheck.bat
|
call ifacecheck.bat
|
||||||
@del ifacecheck.bat
|
@del ifacecheck.bat
|
||||||
@echo cd screenshotgen\src >screenshotgen.bat
|
@echo cd screenshotgen\src >screenshotgen.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>screenshotgen.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>screenshotgen.bat
|
||||||
call screenshotgen.bat
|
call screenshotgen.bat
|
||||||
@del screenshotgen.bat
|
@del screenshotgen.bat
|
||||||
@echo cd wxrc >wxrc.bat
|
@echo cd wxrc >wxrc.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>wxrc.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>wxrc.bat
|
||||||
call wxrc.bat
|
call wxrc.bat
|
||||||
@del wxrc.bat
|
@del wxrc.bat
|
||||||
|
|
||||||
emulator:
|
emulator:
|
||||||
@echo cd emulator\src >emulator.bat
|
@echo cd emulator\src >emulator.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>emulator.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>emulator.bat
|
||||||
call emulator.bat
|
call emulator.bat
|
||||||
@del emulator.bat
|
@del emulator.bat
|
||||||
|
|
||||||
execmon:
|
execmon:
|
||||||
@echo cd execmon >execmon.bat
|
@echo cd execmon >execmon.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>execmon.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>execmon.bat
|
||||||
call execmon.bat
|
call execmon.bat
|
||||||
@del execmon.bat
|
@del execmon.bat
|
||||||
|
|
||||||
helpview:
|
helpview:
|
||||||
@echo cd helpview\src >helpview.bat
|
@echo cd helpview\src >helpview.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>helpview.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>helpview.bat
|
||||||
call helpview.bat
|
call helpview.bat
|
||||||
@del helpview.bat
|
@del helpview.bat
|
||||||
|
|
||||||
hhp2cached:
|
hhp2cached:
|
||||||
@echo cd hhp2cached >hhp2cached.bat
|
@echo cd hhp2cached >hhp2cached.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>hhp2cached.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>hhp2cached.bat
|
||||||
call hhp2cached.bat
|
call hhp2cached.bat
|
||||||
@del hhp2cached.bat
|
@del hhp2cached.bat
|
||||||
|
|
||||||
ifacecheck:
|
ifacecheck:
|
||||||
@echo cd ifacecheck\src >ifacecheck.bat
|
@echo cd ifacecheck\src >ifacecheck.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>ifacecheck.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>ifacecheck.bat
|
||||||
call ifacecheck.bat
|
call ifacecheck.bat
|
||||||
@del ifacecheck.bat
|
@del ifacecheck.bat
|
||||||
|
|
||||||
screenshotgen:
|
screenshotgen:
|
||||||
@echo cd screenshotgen\src >screenshotgen.bat
|
@echo cd screenshotgen\src >screenshotgen.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>screenshotgen.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>screenshotgen.bat
|
||||||
call screenshotgen.bat
|
call screenshotgen.bat
|
||||||
@del screenshotgen.bat
|
@del screenshotgen.bat
|
||||||
|
|
||||||
wxrc:
|
wxrc:
|
||||||
@echo cd wxrc >wxrc.bat
|
@echo cd wxrc >wxrc.bat
|
||||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>wxrc.bat
|
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>wxrc.bat
|
||||||
call wxrc.bat
|
call wxrc.bat
|
||||||
@del wxrc.bat
|
@del wxrc.bat
|
||||||
|
|
||||||
|
|||||||
@@ -1,82 +1,82 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../build/msw/config.gcc
|
include ../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
|
MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
|
||||||
LINK_MODULE_FLAGS="$(LINK_MODULE_FLAGS)" CC="$(CC)" CXX="$(CXX)" \
|
LINK_MODULE_FLAGS="$(LINK_MODULE_FLAGS)" CC="$(CC)" CXX="$(CXX)" \
|
||||||
CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" CPPFLAGS="$(CPPFLAGS)" \
|
CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" CPPFLAGS="$(CPPFLAGS)" \
|
||||||
LDFLAGS="$(LDFLAGS)" CPP="$(CPP)" SHARED="$(SHARED)" \
|
LDFLAGS="$(LDFLAGS)" CPP="$(CPP)" SHARED="$(SHARED)" \
|
||||||
TOOLKIT_VERSION="$(TOOLKIT_VERSION)" WXUNIV="$(WXUNIV)" \
|
TOOLKIT_VERSION="$(TOOLKIT_VERSION)" WXUNIV="$(WXUNIV)" \
|
||||||
UNICODE="$(UNICODE)" MSLU="$(MSLU)" BUILD="$(BUILD)" \
|
UNICODE="$(UNICODE)" MSLU="$(MSLU)" BUILD="$(BUILD)" \
|
||||||
DEBUG_INFO="$(DEBUG_INFO)" DEBUG_FLAG="$(DEBUG_FLAG)" \
|
DEBUG_INFO="$(DEBUG_INFO)" DEBUG_FLAG="$(DEBUG_FLAG)" \
|
||||||
MONOLITHIC="$(MONOLITHIC)" USE_GUI="$(USE_GUI)" USE_HTML="$(USE_HTML)" \
|
MONOLITHIC="$(MONOLITHIC)" USE_GUI="$(USE_GUI)" USE_HTML="$(USE_HTML)" \
|
||||||
USE_WEBVIEW="$(USE_WEBVIEW)" USE_MEDIA="$(USE_MEDIA)" USE_XRC="$(USE_XRC)" \
|
USE_WEBVIEW="$(USE_WEBVIEW)" USE_MEDIA="$(USE_MEDIA)" USE_XRC="$(USE_XRC)" \
|
||||||
USE_AUI="$(USE_AUI)" USE_RIBBON="$(USE_RIBBON)" \
|
USE_AUI="$(USE_AUI)" USE_RIBBON="$(USE_RIBBON)" \
|
||||||
USE_PROPGRID="$(USE_PROPGRID)" USE_RICHTEXT="$(USE_RICHTEXT)" \
|
USE_PROPGRID="$(USE_PROPGRID)" USE_RICHTEXT="$(USE_RICHTEXT)" \
|
||||||
USE_STC="$(USE_STC)" USE_OPENGL="$(USE_OPENGL)" USE_QA="$(USE_QA)" \
|
USE_STC="$(USE_STC)" USE_OPENGL="$(USE_OPENGL)" USE_QA="$(USE_QA)" \
|
||||||
USE_EXCEPTIONS="$(USE_EXCEPTIONS)" USE_RTTI="$(USE_RTTI)" \
|
USE_EXCEPTIONS="$(USE_EXCEPTIONS)" USE_RTTI="$(USE_RTTI)" \
|
||||||
USE_THREADS="$(USE_THREADS)" USE_CAIRO="$(USE_CAIRO)" \
|
USE_THREADS="$(USE_THREADS)" USE_CAIRO="$(USE_CAIRO)" \
|
||||||
OFFICIAL_BUILD="$(OFFICIAL_BUILD)" VENDOR="$(VENDOR)" \
|
OFFICIAL_BUILD="$(OFFICIAL_BUILD)" VENDOR="$(VENDOR)" \
|
||||||
WX_FLAVOUR="$(WX_FLAVOUR)" WX_LIB_FLAVOUR="$(WX_LIB_FLAVOUR)" CFG="$(CFG)" \
|
WX_FLAVOUR="$(WX_FLAVOUR)" WX_LIB_FLAVOUR="$(WX_LIB_FLAVOUR)" CFG="$(CFG)" \
|
||||||
CPPUNIT_CFLAGS="$(CPPUNIT_CFLAGS)" CPPUNIT_LIBS="$(CPPUNIT_LIBS)" \
|
CPPUNIT_CFLAGS="$(CPPUNIT_CFLAGS)" CPPUNIT_LIBS="$(CPPUNIT_LIBS)" \
|
||||||
RUNTIME_LIBS="$(RUNTIME_LIBS)" GCC_VERSION="$(GCC_VERSION)" \
|
RUNTIME_LIBS="$(RUNTIME_LIBS)" GCC_VERSION="$(GCC_VERSION)" \
|
||||||
WINDRES="$(WINDRES)"
|
WINDRES="$(WINDRES)"
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: emulator execmon helpview hhp2cached ifacecheck screenshotgen wxrc
|
all: emulator execmon helpview hhp2cached ifacecheck screenshotgen wxrc
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist .\*.o del .\*.o
|
-if exist .\*.o del .\*.o
|
||||||
-if exist .\*.d del .\*.d
|
-if exist .\*.d del .\*.d
|
||||||
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) clean
|
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) clean
|
||||||
$(MAKE) -C execmon -f makefile.gcc $(MAKEARGS) clean
|
$(MAKE) -C execmon -f makefile.gcc $(MAKEARGS) clean
|
||||||
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) clean
|
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) clean
|
||||||
$(MAKE) -C hhp2cached -f makefile.gcc $(MAKEARGS) clean
|
$(MAKE) -C hhp2cached -f makefile.gcc $(MAKEARGS) clean
|
||||||
$(MAKE) -C ifacecheck\src -f makefile.gcc $(MAKEARGS) clean
|
$(MAKE) -C ifacecheck\src -f makefile.gcc $(MAKEARGS) clean
|
||||||
$(MAKE) -C screenshotgen\src -f makefile.gcc $(MAKEARGS) clean
|
$(MAKE) -C screenshotgen\src -f makefile.gcc $(MAKEARGS) clean
|
||||||
$(MAKE) -C wxrc -f makefile.gcc $(MAKEARGS) clean
|
$(MAKE) -C wxrc -f makefile.gcc $(MAKEARGS) clean
|
||||||
|
|
||||||
emulator:
|
emulator:
|
||||||
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) all
|
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) all
|
||||||
|
|
||||||
execmon:
|
execmon:
|
||||||
$(MAKE) -C execmon -f makefile.gcc $(MAKEARGS) all
|
$(MAKE) -C execmon -f makefile.gcc $(MAKEARGS) all
|
||||||
|
|
||||||
helpview:
|
helpview:
|
||||||
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) all
|
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) all
|
||||||
|
|
||||||
hhp2cached:
|
hhp2cached:
|
||||||
$(MAKE) -C hhp2cached -f makefile.gcc $(MAKEARGS) all
|
$(MAKE) -C hhp2cached -f makefile.gcc $(MAKEARGS) all
|
||||||
|
|
||||||
ifacecheck:
|
ifacecheck:
|
||||||
$(MAKE) -C ifacecheck\src -f makefile.gcc $(MAKEARGS) all
|
$(MAKE) -C ifacecheck\src -f makefile.gcc $(MAKEARGS) all
|
||||||
|
|
||||||
screenshotgen:
|
screenshotgen:
|
||||||
$(MAKE) -C screenshotgen\src -f makefile.gcc $(MAKEARGS) all
|
$(MAKE) -C screenshotgen\src -f makefile.gcc $(MAKEARGS) all
|
||||||
|
|
||||||
wxrc:
|
wxrc:
|
||||||
$(MAKE) -C wxrc -f makefile.gcc $(MAKEARGS) all
|
$(MAKE) -C wxrc -f makefile.gcc $(MAKEARGS) all
|
||||||
|
|
||||||
.PHONY: all clean emulator execmon helpview hhp2cached ifacecheck screenshotgen \
|
.PHONY: all clean emulator execmon helpview hhp2cached ifacecheck screenshotgen \
|
||||||
wxrc
|
wxrc
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include ./*.d
|
-include ./*.d
|
||||||
|
|||||||
@@ -1,101 +1,101 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../build/msw/config.vc>
|
!include <../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
|
MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
|
||||||
CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" CPP="$(CPP)" SHARED="$(SHARED)" \
|
CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" CPP="$(CPP)" SHARED="$(SHARED)" \
|
||||||
TOOLKIT_VERSION="$(TOOLKIT_VERSION)" WXUNIV="$(WXUNIV)" \
|
TOOLKIT_VERSION="$(TOOLKIT_VERSION)" WXUNIV="$(WXUNIV)" \
|
||||||
UNICODE="$(UNICODE)" MSLU="$(MSLU)" BUILD="$(BUILD)" \
|
UNICODE="$(UNICODE)" MSLU="$(MSLU)" BUILD="$(BUILD)" \
|
||||||
TARGET_CPU="$(TARGET_CPU)" DEBUG_INFO="$(DEBUG_INFO)" \
|
TARGET_CPU="$(TARGET_CPU)" DEBUG_INFO="$(DEBUG_INFO)" \
|
||||||
DEBUG_FLAG="$(DEBUG_FLAG)" DEBUG_RUNTIME_LIBS="$(DEBUG_RUNTIME_LIBS)" \
|
DEBUG_FLAG="$(DEBUG_FLAG)" DEBUG_RUNTIME_LIBS="$(DEBUG_RUNTIME_LIBS)" \
|
||||||
MONOLITHIC="$(MONOLITHIC)" USE_GUI="$(USE_GUI)" USE_HTML="$(USE_HTML)" \
|
MONOLITHIC="$(MONOLITHIC)" USE_GUI="$(USE_GUI)" USE_HTML="$(USE_HTML)" \
|
||||||
USE_WEBVIEW="$(USE_WEBVIEW)" USE_MEDIA="$(USE_MEDIA)" USE_XRC="$(USE_XRC)" \
|
USE_WEBVIEW="$(USE_WEBVIEW)" USE_MEDIA="$(USE_MEDIA)" USE_XRC="$(USE_XRC)" \
|
||||||
USE_AUI="$(USE_AUI)" USE_RIBBON="$(USE_RIBBON)" \
|
USE_AUI="$(USE_AUI)" USE_RIBBON="$(USE_RIBBON)" \
|
||||||
USE_PROPGRID="$(USE_PROPGRID)" USE_RICHTEXT="$(USE_RICHTEXT)" \
|
USE_PROPGRID="$(USE_PROPGRID)" USE_RICHTEXT="$(USE_RICHTEXT)" \
|
||||||
USE_STC="$(USE_STC)" USE_OPENGL="$(USE_OPENGL)" USE_QA="$(USE_QA)" \
|
USE_STC="$(USE_STC)" USE_OPENGL="$(USE_OPENGL)" USE_QA="$(USE_QA)" \
|
||||||
USE_EXCEPTIONS="$(USE_EXCEPTIONS)" USE_RTTI="$(USE_RTTI)" \
|
USE_EXCEPTIONS="$(USE_EXCEPTIONS)" USE_RTTI="$(USE_RTTI)" \
|
||||||
USE_THREADS="$(USE_THREADS)" USE_CAIRO="$(USE_CAIRO)" \
|
USE_THREADS="$(USE_THREADS)" USE_CAIRO="$(USE_CAIRO)" \
|
||||||
OFFICIAL_BUILD="$(OFFICIAL_BUILD)" VENDOR="$(VENDOR)" \
|
OFFICIAL_BUILD="$(OFFICIAL_BUILD)" VENDOR="$(VENDOR)" \
|
||||||
WX_FLAVOUR="$(WX_FLAVOUR)" WX_LIB_FLAVOUR="$(WX_LIB_FLAVOUR)" CFG="$(CFG)" \
|
WX_FLAVOUR="$(WX_FLAVOUR)" WX_LIB_FLAVOUR="$(WX_LIB_FLAVOUR)" CFG="$(CFG)" \
|
||||||
CPPUNIT_CFLAGS="$(CPPUNIT_CFLAGS)" CPPUNIT_LIBS="$(CPPUNIT_LIBS)" \
|
CPPUNIT_CFLAGS="$(CPPUNIT_CFLAGS)" CPPUNIT_LIBS="$(CPPUNIT_LIBS)" \
|
||||||
RUNTIME_LIBS="$(RUNTIME_LIBS)"
|
RUNTIME_LIBS="$(RUNTIME_LIBS)"
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: sub_emulator sub_execmon sub_helpview sub_hhp2cached sub_ifacecheck sub_screenshotgen sub_wxrc
|
all: sub_emulator sub_execmon sub_helpview sub_hhp2cached sub_ifacecheck sub_screenshotgen sub_wxrc
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist .\*.obj del .\*.obj
|
-if exist .\*.obj del .\*.obj
|
||||||
-if exist .\*.res del .\*.res
|
-if exist .\*.res del .\*.res
|
||||||
-if exist .\*.pch del .\*.pch
|
-if exist .\*.pch del .\*.pch
|
||||||
cd emulator\src
|
cd emulator\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
cd execmon
|
cd execmon
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
cd helpview\src
|
cd helpview\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
cd hhp2cached
|
cd hhp2cached
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
cd ifacecheck\src
|
cd ifacecheck\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
cd screenshotgen\src
|
cd screenshotgen\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
cd wxrc
|
cd wxrc
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
$(MAKE) -f makefile.vc $(MAKEARGS) clean
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
sub_emulator:
|
sub_emulator:
|
||||||
cd emulator\src
|
cd emulator\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
sub_execmon:
|
sub_execmon:
|
||||||
cd execmon
|
cd execmon
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
sub_helpview:
|
sub_helpview:
|
||||||
cd helpview\src
|
cd helpview\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
sub_hhp2cached:
|
sub_hhp2cached:
|
||||||
cd hhp2cached
|
cd hhp2cached
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
sub_ifacecheck:
|
sub_ifacecheck:
|
||||||
cd ifacecheck\src
|
cd ifacecheck\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
sub_screenshotgen:
|
sub_screenshotgen:
|
||||||
cd screenshotgen\src
|
cd screenshotgen\src
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
sub_wxrc:
|
sub_wxrc:
|
||||||
cd wxrc
|
cd wxrc
|
||||||
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
$(MAKE) -f makefile.vc $(MAKEARGS) all
|
||||||
cd "$(MAKEDIR)"
|
cd "$(MAKEDIR)"
|
||||||
|
|
||||||
|
|||||||
@@ -1,297 +1,297 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../../build/msw/config.bcc
|
!include ../../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
SCREENSHOTGEN_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include \
|
SCREENSHOTGEN_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include \
|
||||||
$(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ \
|
$(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ \
|
||||||
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
|
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
|
||||||
$(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
|
$(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
|
||||||
$(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) -I$(SETUPHDIR) \
|
$(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) -I$(SETUPHDIR) \
|
||||||
-I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) \
|
-I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) \
|
||||||
-I.\..\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
-I.\..\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
|
||||||
SCREENSHOTGEN_OBJECTS = \
|
SCREENSHOTGEN_OBJECTS = \
|
||||||
$(OBJS)\screenshotgen_screenshot_app.obj \
|
$(OBJS)\screenshotgen_screenshot_app.obj \
|
||||||
$(OBJS)\screenshotgen_screenshot_main.obj \
|
$(OBJS)\screenshotgen_screenshot_main.obj \
|
||||||
$(OBJS)\screenshotgen_guiframe.obj \
|
$(OBJS)\screenshotgen_guiframe.obj \
|
||||||
$(OBJS)\screenshotgen_customcombo.obj \
|
$(OBJS)\screenshotgen_customcombo.obj \
|
||||||
$(OBJS)\screenshotgen_autocapture.obj
|
$(OBJS)\screenshotgen_autocapture.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_2 = -Od
|
__OPTIMIZEFLAG_2 = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_5 =
|
__THREADSFLAG_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_5 = mt
|
__THREADSFLAG_5 = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_6 =
|
__THREADSFLAG_6 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_6 = -tWM
|
__THREADSFLAG_6 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_7 = -tWR
|
__RUNTIME_LIBS_7 = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_7 =
|
__RUNTIME_LIBS_7 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_8 = i
|
__RUNTIME_LIBS_8 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_8 =
|
__RUNTIME_LIBS_8 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
__NDEBUG_DEFINE_p_1 = -dNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
__UNICODE_DEFINE_p_1 = -d_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = -dwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = -dWXUSINGDLL
|
__DLLFLAG_p_1 = -dWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_AUI_p = \
|
__WXLIB_AUI_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_RICHTEXT_p = \
|
__WXLIB_RICHTEXT_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_ADV_p = \
|
__WXLIB_ADV_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\screenshotgen.exe bitmaps xml
|
all: $(OBJS)\screenshotgen.exe bitmaps xml
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\screenshotgen.exe del $(OBJS)\screenshotgen.exe
|
-if exist $(OBJS)\screenshotgen.exe del $(OBJS)\screenshotgen.exe
|
||||||
-if exist $(OBJS)\screenshotgen.tds del $(OBJS)\screenshotgen.tds
|
-if exist $(OBJS)\screenshotgen.tds del $(OBJS)\screenshotgen.tds
|
||||||
-if exist $(OBJS)\screenshotgen.ilc del $(OBJS)\screenshotgen.ilc
|
-if exist $(OBJS)\screenshotgen.ilc del $(OBJS)\screenshotgen.ilc
|
||||||
-if exist $(OBJS)\screenshotgen.ild del $(OBJS)\screenshotgen.ild
|
-if exist $(OBJS)\screenshotgen.ild del $(OBJS)\screenshotgen.ild
|
||||||
-if exist $(OBJS)\screenshotgen.ilf del $(OBJS)\screenshotgen.ilf
|
-if exist $(OBJS)\screenshotgen.ilf del $(OBJS)\screenshotgen.ilf
|
||||||
-if exist $(OBJS)\screenshotgen.ils del $(OBJS)\screenshotgen.ils
|
-if exist $(OBJS)\screenshotgen.ils del $(OBJS)\screenshotgen.ils
|
||||||
|
|
||||||
$(OBJS)\screenshotgen.exe: $(SCREENSHOTGEN_OBJECTS) $(OBJS)\screenshotgen_screenshotgen.res
|
$(OBJS)\screenshotgen.exe: $(SCREENSHOTGEN_OBJECTS) $(OBJS)\screenshotgen_screenshotgen.res
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
||||||
c0w32.obj $(SCREENSHOTGEN_OBJECTS),$@,, $(__WXLIB_AUI_p) $(__WXLIB_RICHTEXT_p) $(__WXLIB_HTML_p) $(__WXLIB_ADV_p) $(__WXLIB_XML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\screenshotgen_screenshotgen.res
|
c0w32.obj $(SCREENSHOTGEN_OBJECTS),$@,, $(__WXLIB_AUI_p) $(__WXLIB_RICHTEXT_p) $(__WXLIB_HTML_p) $(__WXLIB_ADV_p) $(__WXLIB_XML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\screenshotgen_screenshotgen.res
|
||||||
|
|
|
|
||||||
|
|
||||||
bitmaps:
|
bitmaps:
|
||||||
if not exist $(OBJS)\bitmaps mkdir $(OBJS)\bitmaps
|
if not exist $(OBJS)\bitmaps mkdir $(OBJS)\bitmaps
|
||||||
for %f in (wxwin32x32.png bell.png sound.png dropbuth.png dropbutn.png dropbutp.png throbber.gif) do if not exist $(OBJS)\bitmaps\%f copy .\bitmaps\%f $(OBJS)\bitmaps
|
for %f in (wxwin32x32.png bell.png sound.png dropbuth.png dropbutn.png dropbutp.png throbber.gif) do if not exist $(OBJS)\bitmaps\%f copy .\bitmaps\%f $(OBJS)\bitmaps
|
||||||
|
|
||||||
xml:
|
xml:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (richtext.xml) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (richtext.xml) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshot_app.obj: .\screenshot_app.cpp
|
$(OBJS)\screenshotgen_screenshot_app.obj: .\screenshot_app.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_app.cpp
|
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_app.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshot_main.obj: .\screenshot_main.cpp
|
$(OBJS)\screenshotgen_screenshot_main.obj: .\screenshot_main.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_main.cpp
|
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_main.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_guiframe.obj: .\guiframe.cpp
|
$(OBJS)\screenshotgen_guiframe.obj: .\guiframe.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\guiframe.cpp
|
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\guiframe.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_customcombo.obj: .\customcombo.cpp
|
$(OBJS)\screenshotgen_customcombo.obj: .\customcombo.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\customcombo.cpp
|
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\customcombo.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_autocapture.obj: .\autocapture.cpp
|
$(OBJS)\screenshotgen_autocapture.obj: .\autocapture.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\autocapture.cpp
|
$(CXX) -q -c -P -o$@ $(SCREENSHOTGEN_CXXFLAGS) .\autocapture.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshotgen.res: .\screenshotgen.rc
|
$(OBJS)\screenshotgen_screenshotgen.res: .\screenshotgen.rc
|
||||||
<<<<<<< HEAD
|
<<<<<<< HEAD
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -dNOPCH .\screenshotgen.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -dNOPCH .\screenshotgen.rc
|
||||||
=======
|
=======
|
||||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\screenshotgen.rc
|
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -i.\..\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\screenshotgen.rc
|
||||||
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
>>>>>>> cbd92ce... Fix resource compiler include path for Borland.
|
||||||
|
|
||||||
|
|||||||
@@ -1,289 +1,289 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../../build/msw/config.gcc
|
include ../../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
SCREENSHOTGEN_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
SCREENSHOTGEN_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) \
|
||||||
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -W -Wall -I. $(__DLLFLAG_p) \
|
||||||
-I.\..\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
-I.\..\..\..\samples -DNOPCH $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
||||||
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
||||||
SCREENSHOTGEN_OBJECTS = \
|
SCREENSHOTGEN_OBJECTS = \
|
||||||
$(OBJS)\screenshotgen_screenshot_app.o \
|
$(OBJS)\screenshotgen_screenshot_app.o \
|
||||||
$(OBJS)\screenshotgen_screenshot_main.o \
|
$(OBJS)\screenshotgen_screenshot_main.o \
|
||||||
$(OBJS)\screenshotgen_guiframe.o \
|
$(OBJS)\screenshotgen_guiframe.o \
|
||||||
$(OBJS)\screenshotgen_customcombo.o \
|
$(OBJS)\screenshotgen_customcombo.o \
|
||||||
$(OBJS)\screenshotgen_autocapture.o \
|
$(OBJS)\screenshotgen_autocapture.o \
|
||||||
$(OBJS)\screenshotgen_screenshotgen_rc.o
|
$(OBJS)\screenshotgen_screenshotgen_rc.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG_2 = -O0
|
__OPTIMIZEFLAG_2 = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG_5 = -fno-rtti
|
__RTTIFLAG_5 = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG_5 =
|
__RTTIFLAG_5 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG_6 =
|
__EXCEPTIONSFLAG_6 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = --define wxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
__NDEBUG_DEFINE_p_1 = --define NDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = --define wxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
__UNICODE_DEFINE_p_1 = --define _UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = --define wxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
__CAIRO_INCLUDEDIR_p = --include-dir $(CAIRO_ROOT)/include/cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p_1 = --define WXUSINGDLL
|
__DLLFLAG_p_1 = --define WXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_AUI_p = \
|
__WXLIB_AUI_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_RICHTEXT_p = \
|
__WXLIB_RICHTEXT_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_ADV_p = \
|
__WXLIB_ADV_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
ifeq ($(USE_STC),1)
|
ifeq ($(USE_STC),1)
|
||||||
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
__LIB_SCINTILLA_IF_MONO_p = -lwxscintilla$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\screenshotgen.exe bitmaps xml
|
all: $(OBJS)\screenshotgen.exe bitmaps xml
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\screenshotgen.exe del $(OBJS)\screenshotgen.exe
|
-if exist $(OBJS)\screenshotgen.exe del $(OBJS)\screenshotgen.exe
|
||||||
|
|
||||||
$(OBJS)\screenshotgen.exe: $(SCREENSHOTGEN_OBJECTS) $(OBJS)\screenshotgen_screenshotgen_rc.o
|
$(OBJS)\screenshotgen.exe: $(SCREENSHOTGEN_OBJECTS) $(OBJS)\screenshotgen_screenshotgen_rc.o
|
||||||
$(CXX) -o $@ $(SCREENSHOTGEN_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_AUI_p) $(__WXLIB_RICHTEXT_p) $(__WXLIB_HTML_p) $(__WXLIB_ADV_p) $(__WXLIB_XML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(SCREENSHOTGEN_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_AUI_p) $(__WXLIB_RICHTEXT_p) $(__WXLIB_HTML_p) $(__WXLIB_ADV_p) $(__WXLIB_XML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
|
|
||||||
bitmaps:
|
bitmaps:
|
||||||
if not exist $(OBJS)\bitmaps mkdir $(OBJS)\bitmaps
|
if not exist $(OBJS)\bitmaps mkdir $(OBJS)\bitmaps
|
||||||
for %%f in (wxwin32x32.png bell.png sound.png dropbuth.png dropbutn.png dropbutp.png throbber.gif) do if not exist $(OBJS)\bitmaps\%%f copy .\bitmaps\%%f $(OBJS)\bitmaps
|
for %%f in (wxwin32x32.png bell.png sound.png dropbuth.png dropbutn.png dropbutp.png throbber.gif) do if not exist $(OBJS)\bitmaps\%%f copy .\bitmaps\%%f $(OBJS)\bitmaps
|
||||||
|
|
||||||
xml:
|
xml:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %%f in (richtext.xml) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
for %%f in (richtext.xml) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshot_app.o: ./screenshot_app.cpp
|
$(OBJS)\screenshotgen_screenshot_app.o: ./screenshot_app.cpp
|
||||||
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshot_main.o: ./screenshot_main.cpp
|
$(OBJS)\screenshotgen_screenshot_main.o: ./screenshot_main.cpp
|
||||||
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_guiframe.o: ./guiframe.cpp
|
$(OBJS)\screenshotgen_guiframe.o: ./guiframe.cpp
|
||||||
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_customcombo.o: ./customcombo.cpp
|
$(OBJS)\screenshotgen_customcombo.o: ./customcombo.cpp
|
||||||
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_autocapture.o: ./autocapture.cpp
|
$(OBJS)\screenshotgen_autocapture.o: ./autocapture.cpp
|
||||||
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(SCREENSHOTGEN_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshotgen_rc.o: ./screenshotgen.rc
|
$(OBJS)\screenshotgen_screenshotgen_rc.o: ./screenshotgen.rc
|
||||||
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../../samples --define NOPCH
|
$(WINDRES) -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) --include-dir $(SETUPHDIR) --include-dir ./../../../include $(__CAIRO_INCLUDEDIR_p) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../../samples --define NOPCH
|
||||||
|
|
||||||
.PHONY: all clean bitmaps xml
|
.PHONY: all clean bitmaps xml
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,415 +1,415 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../../build/msw/config.vc>
|
!include <../../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
SCREENSHOTGEN_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
SCREENSHOTGEN_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
||||||
$(__DEBUGINFO_0) /Fd$(OBJS)\screenshotgen.pdb $(____DEBUGRUNTIME_3_p) \
|
$(__DEBUGINFO_0) /Fd$(OBJS)\screenshotgen.pdb $(____DEBUGRUNTIME_3_p) \
|
||||||
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
/I$(SETUPHDIR) /I.\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 \
|
||||||
/I. $(__DLLFLAG_p) /D_WINDOWS /I.\..\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
/I. $(__DLLFLAG_p) /D_WINDOWS /I.\..\..\..\samples /DNOPCH $(__RTTIFLAG_11) \
|
||||||
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
SCREENSHOTGEN_OBJECTS = \
|
SCREENSHOTGEN_OBJECTS = \
|
||||||
$(OBJS)\screenshotgen_screenshot_app.obj \
|
$(OBJS)\screenshotgen_screenshot_app.obj \
|
||||||
$(OBJS)\screenshotgen_screenshot_main.obj \
|
$(OBJS)\screenshotgen_screenshot_main.obj \
|
||||||
$(OBJS)\screenshotgen_guiframe.obj \
|
$(OBJS)\screenshotgen_guiframe.obj \
|
||||||
$(OBJS)\screenshotgen_customcombo.obj \
|
$(OBJS)\screenshotgen_customcombo.obj \
|
||||||
$(OBJS)\screenshotgen_autocapture.obj
|
$(OBJS)\screenshotgen_autocapture.obj
|
||||||
SCREENSHOTGEN_RESOURCES = \
|
SCREENSHOTGEN_RESOURCES = \
|
||||||
$(OBJS)\screenshotgen_screenshotgen.res
|
$(OBJS)\screenshotgen_screenshotgen.res
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p_1 =
|
____DEBUGRUNTIME_3_p_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
____DEBUGRUNTIME_3_p_1 = /d _DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_6 = /Od
|
__OPTIMIZEFLAG_6 = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_6 = /O2
|
__OPTIMIZEFLAG_6 = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_9 = L
|
__THREADSFLAG_9 = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_9 = T
|
__THREADSFLAG_9 = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG_11 =
|
__RTTIFLAG_11 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG_11 = /GR
|
__RTTIFLAG_11 = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG_12 =
|
__EXCEPTIONSFLAG_12 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG_12 = /EHsc
|
__EXCEPTIONSFLAG_12 = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
__WXUNIV_DEFINE_p_1 = /d __WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p_1 = /d wxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
__NDEBUG_DEFINE_p_1 = /d NDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p_1 = /d wxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
__RTTI_DEFINE_p_1 = /d wxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
__THREAD_DEFINE_p_1 = /d wxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
__UNICODE_DEFINE_p_1 = /d wxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
__UNICODE_DEFINE_p_1 = /d _UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p_1 = /d wxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_1_p = /i $(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p_1 = /d WXUSINGDLL
|
__DLLFLAG_p_1 = /d WXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_AUI_p = \
|
__WXLIB_AUI_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_RICHTEXT_p = \
|
__WXLIB_RICHTEXT_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_HTML_p = \
|
__WXLIB_HTML_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_ADV_p = \
|
__WXLIB_ADV_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_CORE_p = \
|
__WXLIB_CORE_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
|
||||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(OBJS)\screenshotgen.exe bitmaps xml
|
all: $(OBJS)\screenshotgen.exe bitmaps xml
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\screenshotgen.exe del $(OBJS)\screenshotgen.exe
|
-if exist $(OBJS)\screenshotgen.exe del $(OBJS)\screenshotgen.exe
|
||||||
-if exist $(OBJS)\screenshotgen.ilk del $(OBJS)\screenshotgen.ilk
|
-if exist $(OBJS)\screenshotgen.ilk del $(OBJS)\screenshotgen.ilk
|
||||||
-if exist $(OBJS)\screenshotgen.pdb del $(OBJS)\screenshotgen.pdb
|
-if exist $(OBJS)\screenshotgen.pdb del $(OBJS)\screenshotgen.pdb
|
||||||
|
|
||||||
$(OBJS)\screenshotgen.exe: $(SCREENSHOTGEN_OBJECTS) $(OBJS)\screenshotgen_screenshotgen.res
|
$(OBJS)\screenshotgen.exe: $(SCREENSHOTGEN_OBJECTS) $(OBJS)\screenshotgen_screenshotgen.res
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\screenshotgen.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\screenshotgen.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:WINDOWS $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
||||||
$(SCREENSHOTGEN_OBJECTS) $(SCREENSHOTGEN_RESOURCES) $(__WXLIB_AUI_p) $(__WXLIB_RICHTEXT_p) $(__WXLIB_HTML_p) $(__WXLIB_ADV_p) $(__WXLIB_XML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(SCREENSHOTGEN_OBJECTS) $(SCREENSHOTGEN_RESOURCES) $(__WXLIB_AUI_p) $(__WXLIB_RICHTEXT_p) $(__WXLIB_HTML_p) $(__WXLIB_ADV_p) $(__WXLIB_XML_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
|
|
||||||
bitmaps:
|
bitmaps:
|
||||||
if not exist $(OBJS)\bitmaps mkdir $(OBJS)\bitmaps
|
if not exist $(OBJS)\bitmaps mkdir $(OBJS)\bitmaps
|
||||||
for %f in (wxwin32x32.png bell.png sound.png dropbuth.png dropbutn.png dropbutp.png throbber.gif) do if not exist $(OBJS)\bitmaps\%f copy .\bitmaps\%f $(OBJS)\bitmaps
|
for %f in (wxwin32x32.png bell.png sound.png dropbuth.png dropbutn.png dropbutp.png throbber.gif) do if not exist $(OBJS)\bitmaps\%f copy .\bitmaps\%f $(OBJS)\bitmaps
|
||||||
|
|
||||||
xml:
|
xml:
|
||||||
if not exist $(OBJS) mkdir $(OBJS)
|
if not exist $(OBJS) mkdir $(OBJS)
|
||||||
for %f in (richtext.xml) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
for %f in (richtext.xml) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshot_app.obj: .\screenshot_app.cpp
|
$(OBJS)\screenshotgen_screenshot_app.obj: .\screenshot_app.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_app.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_app.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshot_main.obj: .\screenshot_main.cpp
|
$(OBJS)\screenshotgen_screenshot_main.obj: .\screenshot_main.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_main.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\screenshot_main.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_guiframe.obj: .\guiframe.cpp
|
$(OBJS)\screenshotgen_guiframe.obj: .\guiframe.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\guiframe.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\guiframe.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_customcombo.obj: .\customcombo.cpp
|
$(OBJS)\screenshotgen_customcombo.obj: .\customcombo.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\customcombo.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\customcombo.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_autocapture.obj: .\autocapture.cpp
|
$(OBJS)\screenshotgen_autocapture.obj: .\autocapture.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\autocapture.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(SCREENSHOTGEN_CXXFLAGS) .\autocapture.cpp
|
||||||
|
|
||||||
$(OBJS)\screenshotgen_screenshotgen.res: .\screenshotgen.rc
|
$(OBJS)\screenshotgen_screenshotgen.res: .\screenshotgen.rc
|
||||||
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\..\samples /d NOPCH .\screenshotgen.rc
|
rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) $(__MSLU_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\..\samples /d NOPCH .\screenshotgen.rc
|
||||||
|
|
||||||
|
|||||||
@@ -1,121 +1,121 @@
|
|||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
Project: "screenshotgen"=screenshotgen.dsp - Package Owner=<4>
|
Project: "screenshotgen"=screenshotgen.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name aui
|
Project_Dep_Name aui
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name richtext
|
Project_Dep_Name richtext
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name html
|
Project_Dep_Name html
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name adv
|
Project_Dep_Name adv
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name xml
|
Project_Dep_Name xml
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name core
|
Project_Dep_Name core
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
Begin Project Dependency
|
Begin Project Dependency
|
||||||
Project_Dep_Name base
|
Project_Dep_Name base
|
||||||
End Project Dependency
|
End Project Dependency
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "aui"=..\..\..\build\msw\wx_aui.dsp - Package Owner=<4>
|
Project: "aui"=..\..\..\build\msw\wx_aui.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "richtext"=..\..\..\build\msw\wx_richtext.dsp - Package Owner=<4>
|
Project: "richtext"=..\..\..\build\msw\wx_richtext.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "html"=..\..\..\build\msw\wx_html.dsp - Package Owner=<4>
|
Project: "html"=..\..\..\build\msw\wx_html.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "adv"=..\..\..\build\msw\wx_adv.dsp - Package Owner=<4>
|
Project: "adv"=..\..\..\build\msw\wx_adv.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "xml"=..\..\..\build\msw\wx_xml.dsp - Package Owner=<4>
|
Project: "xml"=..\..\..\build\msw\wx_xml.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "core"=..\..\..\build\msw\wx_core.dsp - Package Owner=<4>
|
Project: "core"=..\..\..\build\msw\wx_core.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "base"=..\..\..\build\msw\wx_base.dsp - Package Owner=<4>
|
Project: "base"=..\..\..\build\msw\wx_base.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
Package=<4>
|
Package=<4>
|
||||||
{{{
|
{{{
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
|||||||
@@ -1,25 +1,25 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshotgen", "screenshotgen_vc7.vcproj", "{65A1C4C8-E1D5-5972-8550-0F5631031FBB}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshotgen", "screenshotgen_vc7.vcproj", "{65A1C4C8-E1D5-5972-8550-0F5631031FBB}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Debug|Win32.ActiveCfg = Debug|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Debug|Win32.Build.0 = Debug|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Release|Win32.ActiveCfg = Release|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Release|Win32.Build.0 = Release|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Release|Win32.Build.0 = Release|Win32
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
@@ -1,335 +1,335 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="screenshotgen"
|
Name="screenshotgen"
|
||||||
ProjectGUID="{65A1C4C8-E1D5-5972-8550-0F5631031FBB}">
|
ProjectGUID="{65A1C4C8-E1D5-5972-8550-0F5631031FBB}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\screenshotgen"
|
IntermediateDirectory="vc_mswud\screenshotgen"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\screenshotgen\"
|
ObjectFile="vc_mswud\screenshotgen\"
|
||||||
ProgramDataBaseFileName="vc_mswud\screenshotgen.pdb"
|
ProgramDataBaseFileName="vc_mswud\screenshotgen.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_aui.lib wxmsw30ud_richtext.lib wxmsw30ud_html.lib wxmsw30ud_adv.lib wxbase30ud_xml.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_aui.lib wxmsw30ud_richtext.lib wxmsw30ud_html.lib wxmsw30ud_adv.lib wxbase30ud_xml.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\screenshotgen.exe"
|
OutputFile="vc_mswud\screenshotgen.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\screenshotgen.pdb"
|
ProgramDatabaseFile="vc_mswud\screenshotgen.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\screenshotgen"
|
IntermediateDirectory="vc_mswu\screenshotgen"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\screenshotgen\"
|
ObjectFile="vc_mswu\screenshotgen\"
|
||||||
ProgramDataBaseFileName="vc_mswu\screenshotgen.pdb"
|
ProgramDataBaseFileName="vc_mswu\screenshotgen.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_aui.lib wxmsw30u_richtext.lib wxmsw30u_html.lib wxmsw30u_adv.lib wxbase30u_xml.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_aui.lib wxmsw30u_richtext.lib wxmsw30u_html.lib wxmsw30u_adv.lib wxbase30u_xml.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\screenshotgen.exe"
|
OutputFile="vc_mswu\screenshotgen.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\screenshotgen.pdb"
|
ProgramDatabaseFile="vc_mswu\screenshotgen.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_lib\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\screenshotgen"
|
IntermediateDirectory="vc_mswuddll\screenshotgen"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\screenshotgen\"
|
ObjectFile="vc_mswuddll\screenshotgen\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\screenshotgen.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\screenshotgen.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30ud_aui.lib wxmsw30ud_richtext.lib wxmsw30ud_html.lib wxmsw30ud_adv.lib wxbase30ud_xml.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30ud_aui.lib wxmsw30ud_richtext.lib wxmsw30ud_html.lib wxmsw30ud_adv.lib wxbase30ud_xml.lib wxmsw30ud_core.lib wxbase30ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\screenshotgen.exe"
|
OutputFile="vc_mswuddll\screenshotgen.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\screenshotgen.pdb"
|
ProgramDatabaseFile="vc_mswuddll\screenshotgen.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswud;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\screenshotgen"
|
IntermediateDirectory="vc_mswudll\screenshotgen"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\screenshotgen\"
|
ObjectFile="vc_mswudll\screenshotgen\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\screenshotgen.pdb"
|
ProgramDataBaseFileName="vc_mswudll\screenshotgen.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxmsw30u_aui.lib wxmsw30u_richtext.lib wxmsw30u_html.lib wxmsw30u_adv.lib wxbase30u_xml.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxmsw30u_aui.lib wxmsw30u_richtext.lib wxmsw30u_html.lib wxmsw30u_adv.lib wxbase30u_xml.lib wxmsw30u_core.lib wxbase30u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\screenshotgen.exe"
|
OutputFile="vc_mswudll\screenshotgen.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\screenshotgen.pdb"
|
ProgramDatabaseFile="vc_mswudll\screenshotgen.pdb"
|
||||||
SubSystem="2"
|
SubSystem="2"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_WINDOWS;NOPCH"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
AdditionalIncludeDirectories=".\..\..\..\lib\vc_dll\mswu;.\..\..\..\include;.;.\..\..\..\samples"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\autocapture.cpp">
|
RelativePath=".\autocapture.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\customcombo.cpp">
|
RelativePath=".\customcombo.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\guiframe.cpp">
|
RelativePath=".\guiframe.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\screenshot_app.cpp">
|
RelativePath=".\screenshot_app.cpp">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\screenshot_main.cpp">
|
RelativePath=".\screenshot_main.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\autocapture.h">
|
RelativePath=".\autocapture.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\customcombo.h">
|
RelativePath=".\customcombo.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\guiframe.h">
|
RelativePath=".\guiframe.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\screenshot_app.h">
|
RelativePath=".\screenshot_app.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\screenshot_main.h">
|
RelativePath=".\screenshot_main.h">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\screenshotgen.rc">
|
RelativePath=".\screenshotgen.rc">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||||
# Visual Studio 2005
|
# Visual Studio 2005
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshotgen", "screenshotgen_vc8.vcproj", "{D36F115C-330D-5EAE-B66F-885D6BE20540}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshotgen", "screenshotgen_vc8.vcproj", "{D36F115C-330D-5EAE-B66F-885D6BE20540}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|Win32.ActiveCfg = Debug|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|Win32.Build.0 = Debug|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|x64.ActiveCfg = Debug|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|x64.Build.0 = Debug|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Debug|x64.Build.0 = Debug|x64
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|Win32.ActiveCfg = Release|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|Win32.Build.0 = Release|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|Win32.Build.0 = Release|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|x64.ActiveCfg = Release|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|x64.ActiveCfg = Release|x64
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|x64.Build.0 = Release|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.Release|x64.Build.0 = Release|x64
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|x64.Build.0 = DLL Release|x64
|
{D36F115C-330D-5EAE-B66F-885D6BE20540}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,38 +1,38 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
# Visual Studio 2008
|
# Visual Studio 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshotgen", "screenshotgen_vc9.vcproj", "{820F5E3E-095B-580D-AE31-7E492C647B90}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshotgen", "screenshotgen_vc9.vcproj", "{820F5E3E-095B-580D-AE31-7E492C647B90}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
DLL Debug|Win32 = DLL Debug|Win32
|
DLL Debug|Win32 = DLL Debug|Win32
|
||||||
DLL Debug|x64 = DLL Debug|x64
|
DLL Debug|x64 = DLL Debug|x64
|
||||||
DLL Release|Win32 = DLL Release|Win32
|
DLL Release|Win32 = DLL Release|Win32
|
||||||
DLL Release|x64 = DLL Release|x64
|
DLL Release|x64 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|Win32.ActiveCfg = Debug|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|Win32.Build.0 = Debug|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|x64.ActiveCfg = Debug|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|x64.Build.0 = Debug|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Debug|x64.Build.0 = Debug|x64
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|Win32.ActiveCfg = Release|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|Win32.Build.0 = Release|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|Win32.Build.0 = Release|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|x64.ActiveCfg = Release|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|x64.ActiveCfg = Release|x64
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|x64.Build.0 = Release|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.Release|x64.Build.0 = Release|x64
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Debug|x64.Build.0 = DLL Debug|x64
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|Win32.Build.0 = DLL Release|Win32
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|x64.ActiveCfg = DLL Release|x64
|
||||||
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|x64.Build.0 = DLL Release|x64
|
{820F5E3E-095B-580D-AE31-7E492C647B90}.DLL Release|x64.Build.0 = DLL Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,212 +1,212 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
.autodepend
|
.autodepend
|
||||||
|
|
||||||
!ifndef BCCDIR
|
!ifndef BCCDIR
|
||||||
!ifndef MAKEDIR
|
!ifndef MAKEDIR
|
||||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||||
!endif
|
!endif
|
||||||
BCCDIR = $(MAKEDIR)\..
|
BCCDIR = $(MAKEDIR)\..
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include ../../build/msw/config.bcc
|
!include ../../build/msw/config.bcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = bcc
|
COMPILER_PREFIX = bcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
WXRC_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
WXRC_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
|
||||||
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
|
||||||
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
||||||
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
|
||||||
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
$(__MSLU_DEFINE_p) -I$(SETUPHDIR) -I.\..\..\include \
|
||||||
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
$(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
||||||
$(CPPFLAGS) $(CXXFLAGS)
|
$(CPPFLAGS) $(CXXFLAGS)
|
||||||
WXRC_OBJECTS = \
|
WXRC_OBJECTS = \
|
||||||
$(OBJS)\wxrc_wxrc.obj
|
$(OBJS)\wxrc_wxrc.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
__wxrc___depname = $(OBJS)\wxrc.exe
|
__wxrc___depname = $(OBJS)\wxrc.exe
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_2 = -Od
|
__OPTIMIZEFLAG_2 = -Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_5 =
|
__THREADSFLAG_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_5 = mt
|
__THREADSFLAG_5 = mt
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_6 =
|
__THREADSFLAG_6 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_6 = -tWM
|
__THREADSFLAG_6 = -tWM
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_7 = -tWR
|
__RUNTIME_LIBS_7 = -tWR
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_7 =
|
__RUNTIME_LIBS_7 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_8 = i
|
__RUNTIME_LIBS_8 = i
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_8 =
|
__RUNTIME_LIBS_8 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO = -v-
|
__DEBUGINFO = -v-
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO = -v
|
__DEBUGINFO = -v
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(__wxrc___depname)
|
all: $(__wxrc___depname)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
|
||||||
-if exist $(OBJS)\wxrc.exe del $(OBJS)\wxrc.exe
|
-if exist $(OBJS)\wxrc.exe del $(OBJS)\wxrc.exe
|
||||||
-if exist $(OBJS)\wxrc.tds del $(OBJS)\wxrc.tds
|
-if exist $(OBJS)\wxrc.tds del $(OBJS)\wxrc.tds
|
||||||
-if exist $(OBJS)\wxrc.ilc del $(OBJS)\wxrc.ilc
|
-if exist $(OBJS)\wxrc.ilc del $(OBJS)\wxrc.ilc
|
||||||
-if exist $(OBJS)\wxrc.ild del $(OBJS)\wxrc.ild
|
-if exist $(OBJS)\wxrc.ild del $(OBJS)\wxrc.ild
|
||||||
-if exist $(OBJS)\wxrc.ilf del $(OBJS)\wxrc.ilf
|
-if exist $(OBJS)\wxrc.ilf del $(OBJS)\wxrc.ilf
|
||||||
-if exist $(OBJS)\wxrc.ils del $(OBJS)\wxrc.ils
|
-if exist $(OBJS)\wxrc.ils del $(OBJS)\wxrc.ils
|
||||||
|
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
$(OBJS)\wxrc.exe: $(WXRC_OBJECTS)
|
$(OBJS)\wxrc.exe: $(WXRC_OBJECTS)
|
||||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
|
||||||
c0x32.obj $(WXRC_OBJECTS),$@,, $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
|
c0x32.obj $(WXRC_OBJECTS),$@,, $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
|
||||||
|
|
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
$(OBJS)\wxrc_wxrc.obj: .\wxrc.cpp
|
$(OBJS)\wxrc_wxrc.obj: .\wxrc.cpp
|
||||||
$(CXX) -q -c -P -o$@ $(WXRC_CXXFLAGS) .\wxrc.cpp
|
$(CXX) -q -c -P -o$@ $(WXRC_CXXFLAGS) .\wxrc.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,204 +1,204 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
include ../../build/msw/config.gcc
|
include ../../build/msw/config.gcc
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = gcc
|
COMPILER_PREFIX = gcc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
WXRC_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) $(GCCFLAGS) \
|
WXRC_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) $(GCCFLAGS) \
|
||||||
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -W \
|
-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -W \
|
||||||
-Wall -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
-Wall -I. $(__DLLFLAG_p) -DwxUSE_GUI=0 $(__RTTIFLAG_5) $(__EXCEPTIONSFLAG_6) \
|
||||||
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
|
||||||
WXRC_OBJECTS = \
|
WXRC_OBJECTS = \
|
||||||
$(OBJS)\wxrc_wxrc.o
|
$(OBJS)\wxrc_wxrc.o
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
ifeq ($(GCC_VERSION),2.95)
|
ifeq ($(GCC_VERSION),2.95)
|
||||||
GCCFLAGS = -fvtable-thunks
|
GCCFLAGS = -fvtable-thunks
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),0)
|
ifeq ($(USE_GUI),0)
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(OFFICIAL_BUILD),1)
|
ifeq ($(OFFICIAL_BUILD),1)
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),0)
|
ifeq ($(SHARED),0)
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_XRC),1)
|
ifeq ($(USE_XRC),1)
|
||||||
__wxrc___depname = $(OBJS)\wxrc.exe
|
__wxrc___depname = $(OBJS)\wxrc.exe
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
__OPTIMIZEFLAG_2 = -O0
|
__OPTIMIZEFLAG_2 = -O0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__OPTIMIZEFLAG_2 = -O2
|
__OPTIMIZEFLAG_2 = -O2
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTIFLAG_5 = -fno-rtti
|
__RTTIFLAG_5 = -fno-rtti
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),1)
|
ifeq ($(USE_RTTI),1)
|
||||||
__RTTIFLAG_5 =
|
__RTTIFLAG_5 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
__EXCEPTIONSFLAG_6 = -fno-exceptions
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),1)
|
ifeq ($(USE_EXCEPTIONS),1)
|
||||||
__EXCEPTIONSFLAG_6 =
|
__EXCEPTIONSFLAG_6 =
|
||||||
endif
|
endif
|
||||||
ifeq ($(WXUNIV),1)
|
ifeq ($(WXUNIV),1)
|
||||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_FLAG),0)
|
ifeq ($(DEBUG_FLAG),0)
|
||||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
__NDEBUG_DEFINE_p = -DNDEBUG
|
__NDEBUG_DEFINE_p = -DNDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_EXCEPTIONS),0)
|
ifeq ($(USE_EXCEPTIONS),0)
|
||||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_RTTI),0)
|
ifeq ($(USE_RTTI),0)
|
||||||
__RTTI_DEFINE_p = -DwxNO_RTTI
|
__RTTI_DEFINE_p = -DwxNO_RTTI
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREAD_DEFINE_p = -DwxNO_THREADS
|
__THREAD_DEFINE_p = -DwxNO_THREADS
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),0)
|
ifeq ($(UNICODE),0)
|
||||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICODE),1)
|
ifeq ($(UNICODE),1)
|
||||||
__UNICODE_DEFINE_p = -D_UNICODE
|
__UNICODE_DEFINE_p = -D_UNICODE
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = -DwxUSE_UNICODE_MSLU=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(SHARED),1)
|
ifeq ($(SHARED),1)
|
||||||
__DLLFLAG_p = -DWXUSINGDLL
|
__DLLFLAG_p = -DWXUSINGDLL
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),0)
|
ifeq ($(MONOLITHIC),0)
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
-lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MONOLITHIC),1)
|
ifeq ($(MONOLITHIC),1)
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_GUI),1)
|
ifeq ($(USE_GUI),1)
|
||||||
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
ifeq ($(MSLU),1)
|
ifeq ($(MSLU),1)
|
||||||
__UNICOWS_LIB_p = -lunicows
|
__UNICOWS_LIB_p = -lunicows
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
__CAIRO_LIB_p = -lcairo
|
__CAIRO_LIB_p = -lcairo
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_CAIRO),1)
|
ifeq ($(USE_CAIRO),1)
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),debug)
|
ifeq ($(BUILD),debug)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(BUILD),release)
|
ifeq ($(BUILD),release)
|
||||||
ifeq ($(DEBUG_INFO),default)
|
ifeq ($(DEBUG_INFO),default)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),0)
|
ifeq ($(DEBUG_INFO),0)
|
||||||
__DEBUGINFO =
|
__DEBUGINFO =
|
||||||
endif
|
endif
|
||||||
ifeq ($(DEBUG_INFO),1)
|
ifeq ($(DEBUG_INFO),1)
|
||||||
__DEBUGINFO = -g
|
__DEBUGINFO = -g
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),0)
|
ifeq ($(USE_THREADS),0)
|
||||||
__THREADSFLAG =
|
__THREADSFLAG =
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_THREADS),1)
|
ifeq ($(USE_THREADS),1)
|
||||||
__THREADSFLAG = -mthreads
|
__THREADSFLAG = -mthreads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(__wxrc___depname)
|
all: $(__wxrc___depname)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
-if exist $(OBJS)\*.o del $(OBJS)\*.o
|
||||||
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
-if exist $(OBJS)\*.d del $(OBJS)\*.d
|
||||||
-if exist $(OBJS)\wxrc.exe del $(OBJS)\wxrc.exe
|
-if exist $(OBJS)\wxrc.exe del $(OBJS)\wxrc.exe
|
||||||
|
|
||||||
ifeq ($(USE_XRC),1)
|
ifeq ($(USE_XRC),1)
|
||||||
$(OBJS)\wxrc.exe: $(WXRC_OBJECTS)
|
$(OBJS)\wxrc.exe: $(WXRC_OBJECTS)
|
||||||
$(CXX) -o $@ $(WXRC_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
$(CXX) -o $@ $(WXRC_OBJECTS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lwininet
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(OBJS)\wxrc_wxrc.o: ./wxrc.cpp
|
$(OBJS)\wxrc_wxrc.o: ./wxrc.cpp
|
||||||
$(CXX) -c -o $@ $(WXRC_CXXFLAGS) $(CPPDEPS) $<
|
$(CXX) -c -o $@ $(WXRC_CXXFLAGS) $(CPPDEPS) $<
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
||||||
|
|
||||||
SHELL := $(COMSPEC)
|
SHELL := $(COMSPEC)
|
||||||
|
|
||||||
# Dependencies tracking:
|
# Dependencies tracking:
|
||||||
-include $(OBJS)/*.d
|
-include $(OBJS)/*.d
|
||||||
|
|||||||
@@ -1,311 +1,311 @@
|
|||||||
# =========================================================================
|
# =========================================================================
|
||||||
# This makefile was generated by
|
# This makefile was generated by
|
||||||
# Bakefile 0.2.9 (http://www.bakefile.org)
|
# Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
# Do not modify, all changes will be overwritten!
|
# Do not modify, all changes will be overwritten!
|
||||||
# =========================================================================
|
# =========================================================================
|
||||||
|
|
||||||
!include <../../build/msw/config.vc>
|
!include <../../build/msw/config.vc>
|
||||||
|
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Do not modify the rest of this file!
|
# Do not modify the rest of this file!
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
### Variables: ###
|
### Variables: ###
|
||||||
|
|
||||||
WX_RELEASE_NODOT = 30
|
WX_RELEASE_NODOT = 30
|
||||||
COMPILER_PREFIX = vc
|
COMPILER_PREFIX = vc
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||||
LIBDIRNAME = \
|
LIBDIRNAME = \
|
||||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||||
SETUPHDIR = \
|
SETUPHDIR = \
|
||||||
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
|
||||||
WXRC_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
WXRC_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
|
||||||
$(__DEBUGINFO_0) /Fd$(OBJS)\wxrc.pdb $(____DEBUGRUNTIME_3_p) \
|
$(__DEBUGINFO_0) /Fd$(OBJS)\wxrc.pdb $(____DEBUGRUNTIME_3_p) \
|
||||||
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||||
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
|
||||||
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
$(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
|
||||||
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
||||||
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) $(__MSLU_DEFINE_p) \
|
||||||
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. \
|
/I$(SETUPHDIR) /I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. \
|
||||||
$(__DLLFLAG_p) /D_CONSOLE /DwxUSE_GUI=0 $(__RTTIFLAG_11) \
|
$(__DLLFLAG_p) /D_CONSOLE /DwxUSE_GUI=0 $(__RTTIFLAG_11) \
|
||||||
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
$(__EXCEPTIONSFLAG_12) $(CPPFLAGS) $(CXXFLAGS)
|
||||||
WXRC_OBJECTS = \
|
WXRC_OBJECTS = \
|
||||||
$(OBJS)\wxrc_wxrc.obj
|
$(OBJS)\wxrc_wxrc.obj
|
||||||
|
|
||||||
### Conditionally set variables: ###
|
### Conditionally set variables: ###
|
||||||
|
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
ARCH_SUFFIX = _ia64
|
ARCH_SUFFIX = _ia64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
ARCH_SUFFIX = _x64
|
ARCH_SUFFIX = _x64
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "0"
|
!if "$(USE_GUI)" == "0"
|
||||||
PORTNAME = base
|
PORTNAME = base
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
PORTNAME = msw$(TOOLKIT_VERSION)
|
PORTNAME = msw$(TOOLKIT_VERSION)
|
||||||
!endif
|
!endif
|
||||||
!if "$(OFFICIAL_BUILD)" == "1"
|
!if "$(OFFICIAL_BUILD)" == "1"
|
||||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
WXDEBUGFLAG = d
|
WXDEBUGFLAG = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
WXUNICODEFLAG = u
|
WXUNICODEFLAG = u
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
WXUNIVNAME = univ
|
WXUNIVNAME = univ
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
WXDLLFLAG = dll
|
WXDLLFLAG = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "0"
|
!if "$(SHARED)" == "0"
|
||||||
LIBTYPE_SUFFIX = lib
|
LIBTYPE_SUFFIX = lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
LIBTYPE_SUFFIX = dll
|
LIBTYPE_SUFFIX = dll
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "AMD64"
|
!if "$(TARGET_CPU)" == "AMD64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "IA64"
|
!if "$(TARGET_CPU)" == "IA64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "X64"
|
!if "$(TARGET_CPU)" == "X64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "amd64"
|
!if "$(TARGET_CPU)" == "amd64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "ia64"
|
!if "$(TARGET_CPU)" == "ia64"
|
||||||
LINK_TARGET_CPU = /MACHINE:IA64
|
LINK_TARGET_CPU = /MACHINE:IA64
|
||||||
!endif
|
!endif
|
||||||
!if "$(TARGET_CPU)" == "x64"
|
!if "$(TARGET_CPU)" == "x64"
|
||||||
LINK_TARGET_CPU = /MACHINE:X64
|
LINK_TARGET_CPU = /MACHINE:X64
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
EXTRALIBS_FOR_BASE =
|
EXTRALIBS_FOR_BASE =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
__wxrc___depname = $(OBJS)\wxrc.exe
|
__wxrc___depname = $(OBJS)\wxrc.exe
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_0 =
|
__DEBUGINFO_0 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_0 = /Zi
|
__DEBUGINFO_0 = /Zi
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_1 =
|
__DEBUGINFO_1 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_1 = /DEBUG
|
__DEBUGINFO_1 = /DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "0"
|
!if "$(DEBUG_INFO)" == "0"
|
||||||
__DEBUGINFO_2 =
|
__DEBUGINFO_2 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_INFO)" == "1"
|
!if "$(DEBUG_INFO)" == "1"
|
||||||
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
__DEBUGINFO_2 = $(__DEBUGRUNTIME_5)
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
____DEBUGRUNTIME_3_p =
|
____DEBUGRUNTIME_3_p =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
____DEBUGRUNTIME_3_p = /D_DEBUG
|
____DEBUGRUNTIME_3_p = /D_DEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_4 =
|
__DEBUGRUNTIME_4 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_4 = d
|
__DEBUGRUNTIME_4 = d
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
__DEBUGRUNTIME_5 = /opt:ref /opt:icf
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "1"
|
||||||
__DEBUGRUNTIME_5 =
|
__DEBUGRUNTIME_5 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug"
|
!if "$(BUILD)" == "debug"
|
||||||
__OPTIMIZEFLAG_6 = /Od
|
__OPTIMIZEFLAG_6 = /Od
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release"
|
!if "$(BUILD)" == "release"
|
||||||
__OPTIMIZEFLAG_6 = /O2
|
__OPTIMIZEFLAG_6 = /O2
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREADSFLAG_9 = L
|
__THREADSFLAG_9 = L
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "1"
|
!if "$(USE_THREADS)" == "1"
|
||||||
__THREADSFLAG_9 = T
|
__THREADSFLAG_9 = T
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "dynamic"
|
!if "$(RUNTIME_LIBS)" == "dynamic"
|
||||||
__RUNTIME_LIBS_10 = D
|
__RUNTIME_LIBS_10 = D
|
||||||
!endif
|
!endif
|
||||||
!if "$(RUNTIME_LIBS)" == "static"
|
!if "$(RUNTIME_LIBS)" == "static"
|
||||||
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
__RUNTIME_LIBS_10 = $(__THREADSFLAG_9)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTIFLAG_11 =
|
__RTTIFLAG_11 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "1"
|
!if "$(USE_RTTI)" == "1"
|
||||||
__RTTIFLAG_11 = /GR
|
__RTTIFLAG_11 = /GR
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONSFLAG_12 =
|
__EXCEPTIONSFLAG_12 =
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "1"
|
!if "$(USE_EXCEPTIONS)" == "1"
|
||||||
__EXCEPTIONSFLAG_12 = /EHsc
|
__EXCEPTIONSFLAG_12 = /EHsc
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(BUILD)" == "debug" && "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
|
||||||
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
|
||||||
!endif
|
!endif
|
||||||
!if "$(WXUNIV)" == "1"
|
!if "$(WXUNIV)" == "1"
|
||||||
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_FLAG)" == "0"
|
!if "$(DEBUG_FLAG)" == "0"
|
||||||
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
__DEBUG_DEFINE_p = /DwxDEBUG_LEVEL=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
!if "$(BUILD)" == "release" && "$(DEBUG_RUNTIME_LIBS)" == "default"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
!if "$(DEBUG_RUNTIME_LIBS)" == "0"
|
||||||
__NDEBUG_DEFINE_p = /DNDEBUG
|
__NDEBUG_DEFINE_p = /DNDEBUG
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_EXCEPTIONS)" == "0"
|
!if "$(USE_EXCEPTIONS)" == "0"
|
||||||
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
__EXCEPTIONS_DEFINE_p = /DwxNO_EXCEPTIONS
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_RTTI)" == "0"
|
!if "$(USE_RTTI)" == "0"
|
||||||
__RTTI_DEFINE_p = /DwxNO_RTTI
|
__RTTI_DEFINE_p = /DwxNO_RTTI
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_THREADS)" == "0"
|
!if "$(USE_THREADS)" == "0"
|
||||||
__THREAD_DEFINE_p = /DwxNO_THREADS
|
__THREAD_DEFINE_p = /DwxNO_THREADS
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "0"
|
!if "$(UNICODE)" == "0"
|
||||||
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
__UNICODE_DEFINE_p = /DwxUSE_UNICODE=0
|
||||||
!endif
|
!endif
|
||||||
!if "$(UNICODE)" == "1"
|
!if "$(UNICODE)" == "1"
|
||||||
__UNICODE_DEFINE_p = /D_UNICODE
|
__UNICODE_DEFINE_p = /D_UNICODE
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
__MSLU_DEFINE_p = /DwxUSE_UNICODE_MSLU=1
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
____CAIRO_INCLUDEDIR_FILENAMES_p = /I$(CAIRO_ROOT)\include\cairo
|
||||||
!endif
|
!endif
|
||||||
!if "$(SHARED)" == "1"
|
!if "$(SHARED)" == "1"
|
||||||
__DLLFLAG_p = /DWXUSINGDLL
|
__DLLFLAG_p = /DWXUSINGDLL
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_XML_p = \
|
__WXLIB_XML_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "0"
|
!if "$(MONOLITHIC)" == "0"
|
||||||
__WXLIB_BASE_p = \
|
__WXLIB_BASE_p = \
|
||||||
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__WXLIB_MONO_p = \
|
__WXLIB_MONO_p = \
|
||||||
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MONOLITHIC)" == "1"
|
!if "$(MONOLITHIC)" == "1"
|
||||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_GUI)" == "1"
|
!if "$(USE_GUI)" == "1"
|
||||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(MSLU)" == "1"
|
!if "$(MSLU)" == "1"
|
||||||
__UNICOWS_LIB_p = unicows.lib
|
__UNICOWS_LIB_p = unicows.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
__CAIRO_LIB_p = cairo.lib
|
__CAIRO_LIB_p = cairo.lib
|
||||||
!endif
|
!endif
|
||||||
!if "$(USE_CAIRO)" == "1"
|
!if "$(USE_CAIRO)" == "1"
|
||||||
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
____CAIRO_LIBDIR_FILENAMES_p = /LIBPATH:$(CAIRO_ROOT)\lib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
$(OBJS):
|
$(OBJS):
|
||||||
-if not exist $(OBJS) mkdir $(OBJS)
|
-if not exist $(OBJS) mkdir $(OBJS)
|
||||||
|
|
||||||
### Targets: ###
|
### Targets: ###
|
||||||
|
|
||||||
all: $(__wxrc___depname)
|
all: $(__wxrc___depname)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
|
||||||
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
-if exist $(OBJS)\*.res del $(OBJS)\*.res
|
||||||
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
-if exist $(OBJS)\*.pch del $(OBJS)\*.pch
|
||||||
-if exist $(OBJS)\wxrc.exe del $(OBJS)\wxrc.exe
|
-if exist $(OBJS)\wxrc.exe del $(OBJS)\wxrc.exe
|
||||||
-if exist $(OBJS)\wxrc.ilk del $(OBJS)\wxrc.ilk
|
-if exist $(OBJS)\wxrc.ilk del $(OBJS)\wxrc.ilk
|
||||||
-if exist $(OBJS)\wxrc.pdb del $(OBJS)\wxrc.pdb
|
-if exist $(OBJS)\wxrc.pdb del $(OBJS)\wxrc.pdb
|
||||||
|
|
||||||
!if "$(USE_XRC)" == "1"
|
!if "$(USE_XRC)" == "1"
|
||||||
$(OBJS)\wxrc.exe: $(WXRC_OBJECTS)
|
$(OBJS)\wxrc.exe: $(WXRC_OBJECTS)
|
||||||
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\wxrc.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
link /NOLOGO /OUT:$@ $(__DEBUGINFO_1) /pdb:"$(OBJS)\wxrc.pdb" $(__DEBUGINFO_2) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) /SUBSYSTEM:CONSOLE $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @<<
|
||||||
$(WXRC_OBJECTS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
$(WXRC_OBJECTS) $(__WXLIB_XML_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib
|
||||||
<<
|
<<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
$(OBJS)\wxrc_wxrc.obj: .\wxrc.cpp
|
$(OBJS)\wxrc_wxrc.obj: .\wxrc.cpp
|
||||||
$(CXX) /c /nologo /TP /Fo$@ $(WXRC_CXXFLAGS) .\wxrc.cpp
|
$(CXX) /c /nologo /TP /Fo$@ $(WXRC_CXXFLAGS) .\wxrc.cpp
|
||||||
|
|
||||||
|
|||||||
@@ -1,295 +1,295 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This project was generated by
|
This project was generated by
|
||||||
Bakefile 0.2.9 (http://www.bakefile.org)
|
Bakefile 0.2.9 (http://www.bakefile.org)
|
||||||
Do not modify, all changes will be overwritten!
|
Do not modify, all changes will be overwritten!
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="wxrc"
|
Name="wxrc"
|
||||||
ProjectGUID="{45A76518-8F0F-5DEC-B7B4-99ED435CF56A}">
|
ProjectGUID="{45A76518-8F0F-5DEC-B7B4-99ED435CF56A}">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"/>
|
Name="Win32"/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vc_mswud"
|
OutputDirectory="vc_mswud"
|
||||||
IntermediateDirectory="vc_mswud\wxrc"
|
IntermediateDirectory="vc_mswud\wxrc"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswud\wxrc\"
|
ObjectFile="vc_mswud\wxrc\"
|
||||||
ProgramDataBaseFileName="vc_mswud\wxrc.pdb"
|
ProgramDataBaseFileName="vc_mswud\wxrc.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswud\wxrc.exe"
|
OutputFile="vc_mswud\wxrc.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswud\wxrc.pdb"
|
ProgramDatabaseFile="vc_mswud\wxrc.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vc_mswu"
|
OutputDirectory="vc_mswu"
|
||||||
IntermediateDirectory="vc_mswu\wxrc"
|
IntermediateDirectory="vc_mswu\wxrc"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswu\wxrc\"
|
ObjectFile="vc_mswu\wxrc\"
|
||||||
ProgramDataBaseFileName="vc_mswu\wxrc.pdb"
|
ProgramDataBaseFileName="vc_mswu\wxrc.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswu\wxrc.exe"
|
OutputFile="vc_mswu\wxrc.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_lib"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswu\wxrc.pdb"
|
ProgramDatabaseFile="vc_mswu\wxrc.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_lib\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Debug|Win32"
|
Name="DLL Debug|Win32"
|
||||||
OutputDirectory="vc_mswuddll"
|
OutputDirectory="vc_mswuddll"
|
||||||
IntermediateDirectory="vc_mswuddll\wxrc"
|
IntermediateDirectory="vc_mswuddll\wxrc"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
BufferSecurityCheck="TRUE"
|
BufferSecurityCheck="TRUE"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswuddll\wxrc\"
|
ObjectFile="vc_mswuddll\wxrc\"
|
||||||
ProgramDataBaseFileName="vc_mswuddll\wxrc.pdb"
|
ProgramDataBaseFileName="vc_mswuddll\wxrc.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30ud_xml.lib wxbase30ud.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswuddll\wxrc.exe"
|
OutputFile="vc_mswuddll\wxrc.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswuddll\wxrc.pdb"
|
ProgramDatabaseFile="vc_mswuddll\wxrc.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="_DEBUG;__WXMSW__;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswud;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="DLL Release|Win32"
|
Name="DLL Release|Win32"
|
||||||
OutputDirectory="vc_mswudll"
|
OutputDirectory="vc_mswudll"
|
||||||
IntermediateDirectory="vc_mswudll\wxrc"
|
IntermediateDirectory="vc_mswudll\wxrc"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||||
CharacterSet="1">
|
CharacterSet="1">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="2"
|
Optimization="2"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
ExceptionHandling="TRUE"
|
ExceptionHandling="TRUE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
RuntimeTypeInfo="TRUE"
|
RuntimeTypeInfo="TRUE"
|
||||||
ObjectFile="vc_mswudll\wxrc\"
|
ObjectFile="vc_mswudll\wxrc\"
|
||||||
ProgramDataBaseFileName="vc_mswudll\wxrc.pdb"
|
ProgramDataBaseFileName="vc_mswudll\wxrc.pdb"
|
||||||
WarningLevel="4"
|
WarningLevel="4"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
Detect64BitPortabilityProblems="TRUE"
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
DebugInformationFormat="3"/>
|
DebugInformationFormat="3"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions=""
|
AdditionalOptions=""
|
||||||
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
AdditionalDependencies="wxbase30u_xml.lib wxbase30u.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
|
||||||
OutputFile="vc_mswudll\wxrc.exe"
|
OutputFile="vc_mswudll\wxrc.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
AdditionalLibraryDirectories=".\..\..\lib\vc_dll"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile="vc_mswudll\wxrc.pdb"
|
ProgramDatabaseFile="vc_mswudll\wxrc.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"/>
|
EnableCOMDATFolding="2"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="WIN32;__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"/>
|
Name="VCPostBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"/>
|
Name="VCPreBuildEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
PreprocessorDefinitions="__WXMSW__;NDEBUG;_UNICODE;WXUSINGDLL;_CONSOLE;wxUSE_GUI=0"
|
||||||
Culture="1033"
|
Culture="1033"
|
||||||
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
AdditionalIncludeDirectories=".\..\..\lib\vc_dll\mswu;.\..\..\include;."/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebDeploymentTool"/>
|
Name="VCWebDeploymentTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
|
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
<File
|
<File
|
||||||
RelativePath=".\wxrc.cpp">
|
RelativePath=".\wxrc.cpp">
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user