From 88af812fde414aca8f9add90bc800ea3d8e9a281 Mon Sep 17 00:00:00 2001 From: Hubert Figuiere Date: Mon, 17 Nov 2008 23:42:00 -0500 Subject: upgrade to XMP-SDK 4.4.2 --- samples/build/gcc/XMPSamples.mak | 178 -- samples/build/gcc3.2/XMPSamples.mak | 210 +++ samples/build/vsnet/DumpMainXMP.vcproj | 309 ---- samples/build/vsnet/DumpScannedXMP.vcproj | 230 --- samples/build/vsnet/XMPCoreCoverage.vcproj | 226 --- samples/build/vsnet/XMPFilesCoverage.vcproj | 319 ---- samples/build/vsnet/XMPSamples.sln | 37 - samples/build/vsnet8/CustomSchema.vcproj | 474 ++++++ samples/build/vsnet8/DumpFile.vcproj | 518 ++++++ samples/build/vsnet8/DumpMainXMP.vcproj | 478 ++++++ samples/build/vsnet8/DumpScannedXMP.vcproj | 478 ++++++ samples/build/vsnet8/ModifyingXMP.vcproj | 478 ++++++ samples/build/vsnet8/ReadingXMP.vcproj | 478 ++++++ samples/build/vsnet8/XMP-Toolkit-SDK-Samples.sln | 115 ++ samples/build/vsnet8/XMPCommand.vcproj | 546 ++++++ samples/build/vsnet8/XMPCoreCoverage.vcproj | 478 ++++++ samples/build/vsnet8/XMPFilesCoverage.vcproj | 478 ++++++ samples/build/vsnet8/XMPIterations.vcproj | 478 ++++++ samples/build/xcode/XMPSamples-Common.xcconfig | 39 - samples/build/xcode/XMPSamples-Debug.xcconfig | 15 - samples/build/xcode/XMPSamples-Release.xcconfig | 15 - .../xcode/XMPSamples.xcodeproj/project.pbxproj | 705 -------- samples/build/xcode2/XMPSamples-Common.xcconfig | 39 + samples/build/xcode2/XMPSamples-Debug.xcconfig | 15 + samples/build/xcode2/XMPSamples-Release.xcconfig | 15 + .../xcode2/XMPSamples.xcodeproj/project.pbxproj | 1761 ++++++++++++++++++++ 26 files changed, 7039 insertions(+), 2073 deletions(-) delete mode 100644 samples/build/gcc/XMPSamples.mak create mode 100644 samples/build/gcc3.2/XMPSamples.mak delete mode 100644 samples/build/vsnet/DumpMainXMP.vcproj delete mode 100644 samples/build/vsnet/DumpScannedXMP.vcproj delete mode 100644 samples/build/vsnet/XMPCoreCoverage.vcproj delete mode 100644 samples/build/vsnet/XMPFilesCoverage.vcproj delete mode 100644 samples/build/vsnet/XMPSamples.sln create mode 100755 samples/build/vsnet8/CustomSchema.vcproj create mode 100755 samples/build/vsnet8/DumpFile.vcproj create mode 100755 samples/build/vsnet8/DumpMainXMP.vcproj create mode 100755 samples/build/vsnet8/DumpScannedXMP.vcproj create mode 100755 samples/build/vsnet8/ModifyingXMP.vcproj create mode 100755 samples/build/vsnet8/ReadingXMP.vcproj create mode 100644 samples/build/vsnet8/XMP-Toolkit-SDK-Samples.sln create mode 100755 samples/build/vsnet8/XMPCommand.vcproj create mode 100755 samples/build/vsnet8/XMPCoreCoverage.vcproj create mode 100755 samples/build/vsnet8/XMPFilesCoverage.vcproj create mode 100755 samples/build/vsnet8/XMPIterations.vcproj delete mode 100644 samples/build/xcode/XMPSamples-Common.xcconfig delete mode 100644 samples/build/xcode/XMPSamples-Debug.xcconfig delete mode 100644 samples/build/xcode/XMPSamples-Release.xcconfig delete mode 100644 samples/build/xcode/XMPSamples.xcodeproj/project.pbxproj create mode 100644 samples/build/xcode2/XMPSamples-Common.xcconfig create mode 100644 samples/build/xcode2/XMPSamples-Debug.xcconfig create mode 100644 samples/build/xcode2/XMPSamples-Release.xcconfig create mode 100644 samples/build/xcode2/XMPSamples.xcodeproj/project.pbxproj (limited to 'samples/build') diff --git a/samples/build/gcc/XMPSamples.mak b/samples/build/gcc/XMPSamples.mak deleted file mode 100644 index e1aaf0f..0000000 --- a/samples/build/gcc/XMPSamples.mak +++ /dev/null @@ -1,178 +0,0 @@ -# ================================================================================================== -# Copyright 2002-2004 Adobe Systems Incorporated -# All Rights Reserved. -# -# NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms -# of the Adobe license agreement accompanying it. -# ================================================================================================== - -# ================================================================================================== - -# Define internal use variables. - -Error = - -Sample = ${NAME} - -ifeq "${Sample}" "" - Sample = ${name} -endif - -ifeq "${Sample}" "" - Error += The sample name must be provided -endif - -TargetOS = ${OS} - -ifeq "${TargetOS}" "" - TargetOS = ${os} -endif - -ifeq "${TargetOS}" "" - TargetOS = ${MACHTYPE}${OSTYPE} -endif - -ifeq "${TargetOS}" "i386linux" # Linux ${MACHTYPE}${OSTYPE} is i386linux. - TargetOS = i80386linux -endif - -ifeq "${TargetOS}" "linux" - TargetOS = i80386linux -endif - -ifeq "${TargetOS}" "solaris" - TargetOS = sparcsolaris -endif - -ifneq "${TargetOS}" "i80386linux" - ifneq "${TargetOS}" "sparcsolaris" - Error += Invalid target OS "${TargetOS}" - endif -endif - -TargetStage = ${STAGE} - -ifeq "${TargetStage}" "" - TargetStage = ${stage} -endif - -ifeq "${TargetStage}" "" - TargetStage = debug -endif - -ifneq "${TargetStage}" "debug" - ifneq "${TargetStage}" "release" - Error += Invalid target stage "${TargetStage}" - endif -endif - -ifeq "${TargetStage}" "debug" - LibSuffix = StaticDebug -endif - -ifeq "${TargetStage}" "release" - LibSuffix = StaticRelease -endif - -BuildRoot = ../.. -TargetRoot = ${BuildRoot}/target/${TargetOS}/${TargetStage} -TempRoot = ${BuildRoot}/intermediate/${TargetOS}/${TargetStage} - -XMPRoot = ${BuildRoot}/.. - -LibXMP = ${XMPRoot}/public/libraries/${TargetOS}/${TargetStage}/libXMPCore${LibSuffix}.a - -# ================================================================================================== - -CC = gcc -CPP = gcc -x c++ -LD = gcc - -CPPFlags = -fexceptions -funsigned-char -fPIC -Wno-multichar -Wno-implicit -Wno-ctor-dtor-privacy -CPPFlags += -DUNIX_ENV=1 -D_FILE_OFFSET_BITS=64 - -LDFlags = -LDLibs = ${LibXMP} -Xlinker -R -Xlinker . -LDLibs += -lc -lm -lpthread -lstdc++ - -ifeq "${TargetOS}" "i80386linux" - CFlags += -mcpu=i686 - LDLibs += -lgcc_eh -endif -ifeq "${TargetOS}" "sparcsolaris" - CFlags += -mtune=ultrasparc -endif - -ifeq "${TargetStage}" "debug" - CFlags += -g -O0 -DDEBUG=1 -D_DEBUG=1 -endif -ifeq "${TargetStage}" "release" - CFlags += -O2 -Os -DNDEBUG=1 -endif - -# ================================================================================================== - -vpath %.cpp\ - ${BuildRoot}/source: - -Includes = \ - -I${XMPRoot}/public/include - -# ================================================================================================== - -${TempRoot}/%.o : %.c - @echo "" - @echo "Compiling $<" - ${CC} ${CPPFlags} ${Includes} -c $< -o $@ - -${TempRoot}/%.o : %.cpp - @echo "" - @echo "Compiling $<" - ${CPP} ${CPPFlags} ${Includes} -c $< -o $@ - -${TargetRoot}/% : ${TempRoot}/%.o ${TempRoot}/XMPScanner.o - @echo "" - @echo "Linking $@" - ${LD} ${LDFlags} $< ${TempRoot}/XMPScanner.o ${LDLibs} -o $@ - -# ================================================================================================== - -Sample : Sample_ann msg create_dirs ${TargetRoot}/${Sample} - @echo "" - -Sample_ann : -ifeq "${Error}" "" - @echo "" - @echo Building XMP sample ${Sample} for ${TargetOS} ${TargetStage} -endif - rm -f ${TargetRoot}/${Sample} - -msg : -ifneq "${Error}" "" - @echo "" - @echo "Error: ${Error}" - @echo "" - @echo "# To build one of the XMP samples:" - @echo "# make -f XMPSamples.mak [os=] [stage=] name=" - @echo "# where" - @echo "# os = i80386linux | sparcsolaris" - @echo "# stage = debug | release" - @echo "#" - @echo "# The name argument is the "simple name" of the sample, e.g." - @echo "# XMPCoverage or DumpXMP." - @echo "#" - @echo "# The os and stage arguments can also be uppercase, OS and STAGE." - @echo "# If the OS is omitted it will try to default from the OSTYPE and" - @echo "# MACHTYPE environment variables. If the stage is omitted it" - @echo "# defaults to debug." - @echo "" - exit 1 -endif - -create_dirs : - mkdir -p ${TempRoot} - mkdir -p ${TargetRoot} - -.PHONY : clean -clean : msg - rm -f ${TempRoot}/* ${TargetRoot}/* diff --git a/samples/build/gcc3.2/XMPSamples.mak b/samples/build/gcc3.2/XMPSamples.mak new file mode 100644 index 0000000..d4ca09b --- /dev/null +++ b/samples/build/gcc3.2/XMPSamples.mak @@ -0,0 +1,210 @@ +# ########################################################################################## +# Copyright 2008 Adobe Systems Incorporated +# All Rights Reserved. +# +# NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with +# the terms of the Adobe license agreement accompanying it. +# +# ########################################################################################## + +# Define internal use variables. + +Error = + +Sample = ${NAME} + +ifeq "${Sample}" "" + Sample = ${name} +endif + +ifeq "${Sample}" "" + Error += The sample name must be provided +endif + +# case tolerance +ifeq "${Sample}" "dumpfile" + Sample = dumpfile/main +endif + +TargetOS = ${OS} + +ifeq "${TargetOS}" "" + TargetOS = ${os} +endif + +ifeq "${TargetOS}" "" + TargetOS = ${MACHTYPE}${OSTYPE} +endif + +ifeq "${TargetOS}" "i386linux" # Linux ${MACHTYPE}${OSTYPE} is i386linux. + TargetOS = i80386linux +endif + +ifeq "${TargetOS}" "linux" + TargetOS = i80386linux +endif + +ifeq "${TargetOS}" "solaris" + TargetOS = sparcsolaris +endif + +ifneq "${TargetOS}" "i80386linux" + ifneq "${TargetOS}" "sparcsolaris" + Error += Invalid target OS "${TargetOS}" + endif +endif + +TargetStage = ${STAGE} + +ifeq "${TargetStage}" "" + TargetStage = ${stage} +endif + +ifeq "${TargetStage}" "" + TargetStage = debug +endif + +ifneq "${TargetStage}" "debug" + ifneq "${TargetStage}" "release" + Error += Invalid target stage "${TargetStage}" + endif +endif + +ifeq "${TargetStage}" "debug" + LibSuffix = StaticDebug +endif + +ifeq "${TargetStage}" "release" + LibSuffix = StaticRelease +endif + +BuildRoot = ../.. +TargetRoot = ${BuildRoot}/target/${TargetOS}/${TargetStage} +TempRoot = ${BuildRoot}/intermediate/${TargetOS}/${TargetStage} + +# NB: this is SDKRoot to be exakt +XMPRoot = ${BuildRoot}/.. + +LibXMP = ${XMPRoot}/public/libraries/${TargetOS}/${TargetStage}/libXMPCore${LibSuffix}.a + +################################################################################################ + +CC = gcc +CPP = gcc -x c++ +LD = gcc + +CPPFlags = -fexceptions -funsigned-char -fPIC -Wno-multichar -Wno-implicit -Wno-ctor-dtor-privacy +CPPFlags += -DUNIX_ENV=1 -D_FILE_OFFSET_BITS=64 + +LDFlags = +LDLibs = ${LibXMP} -Xlinker -R -Xlinker . +LDLibs += -lc -lm -lpthread -lstdc++ + +ifeq "${TargetOS}" "i80386linux" + CPPFlags += -D__LITTLE_ENDIAN__=1 + LDLibs += -lgcc_eh +endif +ifeq "${TargetOS}" "sparcsolaris" + CPPFlags += -mtune=ultrasparc -D__BIG_ENDIAN__=1 +endif + +ifeq "${TargetStage}" "debug" + CPPFlags += -g -O0 -DDEBUG=1 -D_DEBUG=1 +endif +ifeq "${TargetStage}" "release" + CPPFlags += -O2 -Os -DNDEBUG=1 +endif + +################################################################################################ + +vpath %.cpp\ + ${BuildRoot}/source: \ + ${BuildRoot}/source/common:\ + ${XMPRoot}/source/common: + +Includes = \ + -I${XMPRoot}/public/include \ + -I${XMPRoot}/samples/source/common \ + -I${XMPRoot}/source/common + +DumfileCommonObj = \ + ${TempRoot}/QELog.o \ + ${TempRoot}/QETagTree.o \ + ${TempRoot}/QEMemLeak.o \ + ${TempRoot}/QEDumpFile.o \ + ${TempRoot}/QEBuginese.o \ + ${TempRoot}/LargeFileAccess.o \ + ${TempRoot}/QEScanner.o + +################################################################################################ + +${TempRoot}/%.o : %.c + @echo "" + @echo "Compiling $<" + ${CC} ${CPPFlags} ${Includes} -c $< -o $@ + +${TempRoot}/%.o : %.cpp + @echo "" + @echo "Compiling $<" + ${CPP} ${CPPFlags} ${Includes} -c $< -o $@ + +ifeq "${Sample}" "dumpfile/main" +${TargetRoot}/% :${TempRoot}/%.o ${DumfileCommonObj} + @echo "" + @echo "Linking ${TargetRoot}/dumpfile" + ${LD} ${LDFlags} $< ${DumfileCommonObj} ${LDLibs} -o ${TargetRoot}/dumpfile +else +${TargetRoot}/% :${TempRoot}/%.o ${TempRoot}/XMPScanner.o + @echo "Linking $@" + ${LD} ${LDFlags} $< ${TempRoot}/XMPScanner.o ${LDLibs} -o $@ +endif + + +################################################################################################ + +Sample : Sample_ann msg create_dirs ${TargetRoot}/${Sample} + @echo "" + +Sample_ann : +ifeq "${Error}" "" + @echo "" + @echo Building XMP sample ${Sample} for ${TargetOS} ${TargetStage} +endif + +msg : +ifneq "${Error}" "" + @echo "" + @echo "Error: ${Error}" + @echo "" + @echo "# To build one of the XMP samples:" + @echo "# make -f XMPSamples.mak [os=] [stage=] name=" + @echo "# where" + @echo "# os = i80386linux | sparcsolaris" + @echo "# stage = debug | release" + @echo "#" + + @echo "# The name argument is the "simple name" of the sample:" + @echo "# XMPCoreCoverage, CustomSchema or DumpScannedXMP." + @echo "#" + @echo "# If the os is omitted it will try to default from the OSTYPE and" + @echo "# MACHTYPE environment variables. If the stage is omitted it" + @echo "# defaults to debug." + @echo "" + exit 1 +endif + +create_dirs : + mkdir -p ${TempRoot} + mkdir -p ${TempRoot}/dumpfile + mkdir -p ${TargetRoot} + +.PHONY : clean + +clean : msg + # just to be extra safe: + ifneq "${TempRoot}" "" + ifneq "${TargetRoot}" "" + rm -rf ${TempRoot}/* + endif + endif + diff --git a/samples/build/vsnet/DumpMainXMP.vcproj b/samples/build/vsnet/DumpMainXMP.vcproj deleted file mode 100644 index d8e3afd..0000000 --- a/samples/build/vsnet/DumpMainXMP.vcproj +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/build/vsnet/DumpScannedXMP.vcproj b/samples/build/vsnet/DumpScannedXMP.vcproj deleted file mode 100644 index 9759e2f..0000000 --- a/samples/build/vsnet/DumpScannedXMP.vcproj +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/build/vsnet/XMPCoreCoverage.vcproj b/samples/build/vsnet/XMPCoreCoverage.vcproj deleted file mode 100644 index b794bd3..0000000 --- a/samples/build/vsnet/XMPCoreCoverage.vcproj +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/build/vsnet/XMPFilesCoverage.vcproj b/samples/build/vsnet/XMPFilesCoverage.vcproj deleted file mode 100644 index 412f4ef..0000000 --- a/samples/build/vsnet/XMPFilesCoverage.vcproj +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/build/vsnet/XMPSamples.sln b/samples/build/vsnet/XMPSamples.sln deleted file mode 100644 index a4c318a..0000000 --- a/samples/build/vsnet/XMPSamples.sln +++ /dev/null @@ -1,37 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XMPCoreCoverage", "XMPCoreCoverage.vcproj", "{6E63FCD8-1D1B-41E6-85CB-79EE9E95E89E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpScannedXMP", "DumpScannedXMP.vcproj", "{5E467275-083F-4C6E-8645-EC3CCA70E3DE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XMPFilesCoverage", "XMPFilesCoverage.vcproj", "{7179F7FA-1A10-4B1C-9E99-8F8B20E51C7C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpMainXMP (static)", "DumpMainXMP.vcproj", "{9C52F46F-E90C-4FE9-83C5-A2C194C91B54}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6E63FCD8-1D1B-41E6-85CB-79EE9E95E89E}.Debug|Win32.ActiveCfg = Debug|Win32 - {6E63FCD8-1D1B-41E6-85CB-79EE9E95E89E}.Debug|Win32.Build.0 = Debug|Win32 - {6E63FCD8-1D1B-41E6-85CB-79EE9E95E89E}.Release|Win32.ActiveCfg = Release|Win32 - {6E63FCD8-1D1B-41E6-85CB-79EE9E95E89E}.Release|Win32.Build.0 = Release|Win32 - {5E467275-083F-4C6E-8645-EC3CCA70E3DE}.Debug|Win32.ActiveCfg = Debug|Win32 - {5E467275-083F-4C6E-8645-EC3CCA70E3DE}.Debug|Win32.Build.0 = Debug|Win32 - {5E467275-083F-4C6E-8645-EC3CCA70E3DE}.Release|Win32.ActiveCfg = Release|Win32 - {5E467275-083F-4C6E-8645-EC3CCA70E3DE}.Release|Win32.Build.0 = Release|Win32 - {7179F7FA-1A10-4B1C-9E99-8F8B20E51C7C}.Debug|Win32.ActiveCfg = Debug|Win32 - {7179F7FA-1A10-4B1C-9E99-8F8B20E51C7C}.Debug|Win32.Build.0 = Debug|Win32 - {7179F7FA-1A10-4B1C-9E99-8F8B20E51C7C}.Release|Win32.ActiveCfg = Release|Win32 - {7179F7FA-1A10-4B1C-9E99-8F8B20E51C7C}.Release|Win32.Build.0 = Release|Win32 - {9C52F46F-E90C-4FE9-83C5-A2C194C91B54}.Debug|Win32.ActiveCfg = Debug|Win32 - {9C52F46F-E90C-4FE9-83C5-A2C194C91B54}.Debug|Win32.Build.0 = Debug|Win32 - {9C52F46F-E90C-4FE9-83C5-A2C194C91B54}.Release|Win32.ActiveCfg = Release|Win32 - {9C52F46F-E90C-4FE9-83C5-A2C194C91B54}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/samples/build/vsnet8/CustomSchema.vcproj b/samples/build/vsnet8/CustomSchema.vcproj new file mode 100755 index 0000000..c0651fa --- /dev/null +++ b/samples/build/vsnet8/CustomSchema.vcproj @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/DumpFile.vcproj b/samples/build/vsnet8/DumpFile.vcproj new file mode 100755 index 0000000..719ef35 --- /dev/null +++ b/samples/build/vsnet8/DumpFile.vcproj @@ -0,0 +1,518 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/DumpMainXMP.vcproj b/samples/build/vsnet8/DumpMainXMP.vcproj new file mode 100755 index 0000000..4e0e040 --- /dev/null +++ b/samples/build/vsnet8/DumpMainXMP.vcproj @@ -0,0 +1,478 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/DumpScannedXMP.vcproj b/samples/build/vsnet8/DumpScannedXMP.vcproj new file mode 100755 index 0000000..fbd90d8 --- /dev/null +++ b/samples/build/vsnet8/DumpScannedXMP.vcproj @@ -0,0 +1,478 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/ModifyingXMP.vcproj b/samples/build/vsnet8/ModifyingXMP.vcproj new file mode 100755 index 0000000..2d95772 --- /dev/null +++ b/samples/build/vsnet8/ModifyingXMP.vcproj @@ -0,0 +1,478 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/ReadingXMP.vcproj b/samples/build/vsnet8/ReadingXMP.vcproj new file mode 100755 index 0000000..af15d7f --- /dev/null +++ b/samples/build/vsnet8/ReadingXMP.vcproj @@ -0,0 +1,478 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/XMP-Toolkit-SDK-Samples.sln b/samples/build/vsnet8/XMP-Toolkit-SDK-Samples.sln new file mode 100644 index 0000000..b9f5b98 --- /dev/null +++ b/samples/build/vsnet8/XMP-Toolkit-SDK-Samples.sln @@ -0,0 +1,115 @@ +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CustomSchema", "CustomSchema.vcproj", "{90F628F9-A5B0-4E73-8371-B3BF03A414AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpFile", "DumpFile.vcproj", "{E724653D-062D-4191-99BF-6A596DC7ACCC}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpMainXMP", "DumpMainXMP.vcproj", "{90F628F9-A5B0-4E73-8371-B3B483A415CF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModifyingXMP", "ModifyingXMP.vcproj", "{90F628F9-A5B0-4E73-8371-BAC387452322}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpScannedXMP", "DumpScannedXMP.vcproj", "{90F628F9-A5B0-4E73-8471-F2F683C815CF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ReadingXMP", "ReadingXMP.vcproj", "{90F628F9-A5B0-4E73-8371-ABD427489422}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XMPIterations", "XMPIterations.vcproj", "{90F628F9-A5B0-4E74-8482-ADD423479422}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XMPCoreCoverage", "XMPCoreCoverage.vcproj", "{90F628F9-A5B0-4E74-8562-AD256FFAC0A2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XMPFilesCoverage", "XMPFilesCoverage.vcproj", "{90F628F9-A5B1-4E88-8482-ADD45111AAA2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XMPCommand", "XMPCommand.vcproj", "{90F628F9-A5B1-4E73-8371-B3B6723F112F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B0-4E73-8371-B3BF03A414AF}.Release|x64.Build.0 = Release|x64 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Debug|Win32.ActiveCfg = Debug|Win32 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Debug|Win32.Build.0 = Debug|Win32 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Debug|x64.ActiveCfg = Debug|x64 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Debug|x64.Build.0 = Debug|x64 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Release|Win32.ActiveCfg = Release|Win32 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Release|Win32.Build.0 = Release|Win32 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Release|x64.ActiveCfg = Release|x64 + {E724653D-062D-4191-99BF-6A596DC7ACCC}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B0-4E73-8371-B3B483A415CF}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B0-4E73-8371-BAC387452322}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B0-4E73-8471-F2F683C815CF}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B0-4E73-8371-ABD427489422}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B0-4E74-8482-ADD423479422}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B0-4E74-8562-AD256FFAC0A2}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B1-4E88-8482-ADD45111AAA2}.Release|x64.Build.0 = Release|x64 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Debug|Win32.ActiveCfg = Debug|Win32 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Debug|Win32.Build.0 = Debug|Win32 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Debug|x64.ActiveCfg = Debug|x64 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Debug|x64.Build.0 = Debug|x64 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Release|Win32.ActiveCfg = Release|Win32 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Release|Win32.Build.0 = Release|Win32 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Release|x64.ActiveCfg = Release|x64 + {90F628F9-A5B1-4E73-8371-B3B6723F112F}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/samples/build/vsnet8/XMPCommand.vcproj b/samples/build/vsnet8/XMPCommand.vcproj new file mode 100755 index 0000000..b447de5 --- /dev/null +++ b/samples/build/vsnet8/XMPCommand.vcproj @@ -0,0 +1,546 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/XMPCoreCoverage.vcproj b/samples/build/vsnet8/XMPCoreCoverage.vcproj new file mode 100755 index 0000000..a0e613d --- /dev/null +++ b/samples/build/vsnet8/XMPCoreCoverage.vcproj @@ -0,0 +1,478 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/XMPFilesCoverage.vcproj b/samples/build/vsnet8/XMPFilesCoverage.vcproj new file mode 100755 index 0000000..4e082ce --- /dev/null +++ b/samples/build/vsnet8/XMPFilesCoverage.vcproj @@ -0,0 +1,478 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/vsnet8/XMPIterations.vcproj b/samples/build/vsnet8/XMPIterations.vcproj new file mode 100755 index 0000000..376af09 --- /dev/null +++ b/samples/build/vsnet8/XMPIterations.vcproj @@ -0,0 +1,478 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/build/xcode/XMPSamples-Common.xcconfig b/samples/build/xcode/XMPSamples-Common.xcconfig deleted file mode 100644 index 53dcdb0..0000000 --- a/samples/build/xcode/XMPSamples-Common.xcconfig +++ /dev/null @@ -1,39 +0,0 @@ -SAMPLES_ROOT = ${PROJECT_DIR}/../.. - -SOURCE_ROOT = ${SAMPLES_ROOT}/source -SRCROOT = ${SOURCE_ROOT} -XMP_ROOT = ${SAMPLES_ROOT}/../public - -PREBINDING = NO -ZERO_LINK = NO - -ARCHS = ppc i386 -MACOSX_DEPLOYMENT_TARGET = 10.3 -SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk - -SHARED_PRECOMPS_DIR = -PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO -GCC_PRECOMPILE_PREFIX_HEADER = NO - -HEADER_SEARCH_PATHS = ${PROJECT_DIR} ${SOURCE_ROOT} ${XMP_ROOT}/include /Developer/Headers/FlatCarbon -FRAMEWORK_SEARCH_PATHS = ${SDKROOT}/System/Library/Frameworks - -COMMON_DEFINES = MAC_ENV=1 - -GCC_CHAR_IS_UNSIGNED_CHAR = YES -GCC_ENABLE_PASCAL_STRINGS = NO -GCC_SHORT_ENUMS = YES -GCC_ONE_BYTE_BOOL = YES -GCC_NO_COMMON_BLOCKS = YES -GCC_FAST_MATH = YES - -GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES -GCC_WARN_ABOUT_RETURN_TYPE = YES -GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES -GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES -GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES -GCC_WARN_MISSING_PARENTHESES = YES -GCC_WARN_CHECK_SWITCH_STATEMENTS = YES -GCC_WARN_UNKNOWN_PRAGMAS = YES -GCC_WARN_SIGN_COMPARE = YES -GCC_WARN_ABOUT_MISSING_NEWLINE = YES diff --git a/samples/build/xcode/XMPSamples-Debug.xcconfig b/samples/build/xcode/XMPSamples-Debug.xcconfig deleted file mode 100644 index 78a602e..0000000 --- a/samples/build/xcode/XMPSamples-Debug.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -BUILD_MODE = debug -LIB_SUFFIX = StaticDebug - -OTHER_LDFLAGS = ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a -framework Carbon - -OBJROOT = ${SAMPLES_ROOT}/intermediate/macintosh/${BUILD_MODE} -SYMROOT = ${SAMPLES_ROOT}/target/macintosh/${BUILD_MODE} - -CONFIGURATION_BUILD_DIR = ${SYMROOT} - -GCC_PREPROCESSOR_DEFINITIONS = ${COMMON_DEFINES} DEBUG=1 _DEBUG=1 - -GCC_GENERATE_DEBUGGING_SYMBOLS = YES -GCC_DEBUGGING_SYMBOLS = full -GCC_OPTIMIZATION_LEVEL = 0 diff --git a/samples/build/xcode/XMPSamples-Release.xcconfig b/samples/build/xcode/XMPSamples-Release.xcconfig deleted file mode 100644 index 87c599a..0000000 --- a/samples/build/xcode/XMPSamples-Release.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -BUILD_MODE = release -LIB_SUFFIX = StaticRelease - -OTHER_LDFLAGS = ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a -framework Carbon - -OBJROOT = ${SAMPLES_ROOT}/intermediate/macintosh/${BUILD_MODE} -SYMROOT = ${SAMPLES_ROOT}/target/macintosh/${BUILD_MODE} - -CONFIGURATION_BUILD_DIR = ${SYMROOT} - -GCC_PREPROCESSOR_DEFINITIONS = ${COMMON_DEFINES} NDEBUG=1 - -GCC_GENERATE_DEBUGGING_SYMBOLS = NO -GCC_DEBUGGING_SYMBOLS = used -GCC_OPTIMIZATION_LEVEL = s diff --git a/samples/build/xcode/XMPSamples.xcodeproj/project.pbxproj b/samples/build/xcode/XMPSamples.xcodeproj/project.pbxproj deleted file mode 100644 index 4a94bb0..0000000 --- a/samples/build/xcode/XMPSamples.xcodeproj/project.pbxproj +++ /dev/null @@ -1,705 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXAggregateTarget section */ - DC97291609A3EACA005A68DF /* Build All */ = { - isa = PBXAggregateTarget; - buildConfigurationList = DC97292709A3EB4F005A68DF /* Build configuration list for PBXAggregateTarget "Build All" */; - buildPhases = ( - ); - dependencies = ( - DC97291809A3EAD0005A68DF /* PBXTargetDependency */, - DC97291E09A3EB06005A68DF /* PBXTargetDependency */, - DC97292009A3EB0C005A68DF /* PBXTargetDependency */, - DC97292209A3EB12005A68DF /* PBXTargetDependency */, - 018882280B7C941400EECA52 /* PBXTargetDependency */, - 018882260B7C941400EECA52 /* PBXTargetDependency */, - 018882240B7C941400EECA52 /* PBXTargetDependency */, - 018882220B7C941400EECA52 /* PBXTargetDependency */, - ); - name = "Build All"; - productName = "Build All"; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 018881FF0B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */; }; - 018882000B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */; }; - 018882040B7C93AB00EECA52 /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; - 0188820D0B7C93AF00EECA52 /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; - 018882130B7C93EE00EECA52 /* DumpMainXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */; }; - 018882140B7C93EF00EECA52 /* DumpMainXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */; }; - DC97291109A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */; }; - DC97291209A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */; }; - DC97291409A3E9BF005A68DF /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; - DC97291509A3E9BF005A68DF /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; - DCE615430951C75C001247EE /* XMPCoreCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */; }; - DCED0E5D089E7E6E009B80AF /* XMPCoreCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 018882210B7C941400EECA52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0188820A0B7C93AF00EECA52; - remoteInfo = "DumpMainXMP Release"; - }; - 018882230B7C941400EECA52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 018882010B7C93AB00EECA52; - remoteInfo = "DumpMainXMP Debug"; - }; - 018882250B7C941400EECA52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 018881F70B7C936A00EECA52; - remoteInfo = "XMPFilesCoverage Release"; - }; - 018882270B7C941400EECA52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 018881EF0B7C935100EECA52; - remoteInfo = "XMPFilesCoverage Debug"; - }; - DC97291709A3EAD0005A68DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DCED0E5B089E7E6E009B80AF; - remoteInfo = "XMPCoverage Debug"; - }; - DC97291D09A3EB06005A68DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DCE615410951C75C001247EE; - remoteInfo = "XMPCoverage Release"; - }; - DC97291F09A3EB0C005A68DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC9728FD09A3E964005A68DF; - remoteInfo = "DumpXMP Debug"; - }; - DC97292109A3EB12005A68DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC97290509A3E969005A68DF; - remoteInfo = "DumpXMP Release"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DumpMainXMP.cpp; sourceTree = ""; }; - 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = XMPFilesCoverage.cpp; sourceTree = ""; }; - 018881F50B7C935100EECA52 /* XMPFilesCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPFilesCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; - 018881FD0B7C936A00EECA52 /* XMPFilesCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPFilesCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; - 018882080B7C93AB00EECA52 /* DumpMainXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpMainXMP; sourceTree = BUILT_PRODUCTS_DIR; }; - 018882110B7C93AF00EECA52 /* DumpMainXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpMainXMP; sourceTree = BUILT_PRODUCTS_DIR; }; - DC97290309A3E964005A68DF /* DumpScannedXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpScannedXMP; sourceTree = BUILT_PRODUCTS_DIR; }; - DC97290B09A3E969005A68DF /* DumpScannedXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpScannedXMP; sourceTree = BUILT_PRODUCTS_DIR; }; - DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DumpScannedXMP.cpp; sourceTree = ""; }; - DC97291309A3E9BF005A68DF /* XMPScanner.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = XMPScanner.cpp; sourceTree = ""; }; - DCE400B00951CF710040D71F /* XMPSamples-Common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = "XMPSamples-Common.xcconfig"; sourceTree = ""; }; - DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = "XMPSamples-Debug.xcconfig"; sourceTree = ""; }; - DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = "XMPSamples-Release.xcconfig"; sourceTree = ""; }; - DCE615470951C75C001247EE /* XMPCoreCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPCoreCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; - DCED0E65089E7E6E009B80AF /* XMPCoreCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPCoreCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; - DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = XMPCoreCoverage.cpp; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 018881F20B7C935100EECA52 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 018881FA0B7C936A00EECA52 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 018882050B7C93AB00EECA52 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0188820E0B7C93AF00EECA52 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC97290009A3E964005A68DF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC97290809A3E969005A68DF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DCE615440951C75C001247EE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DCED0E5E089E7E6E009B80AF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 08FB7794FE84155DC02AAC07 /* XMPCoverage */ = { - isa = PBXGroup; - children = ( - 08FB7795FE84155DC02AAC07 /* Source */, - DCE4006D0951CC850040D71F /* Build Extras */, - 1AB674ADFE9D54B511CA2CBB /* Products */, - ); - name = XMPCoverage; - sourceTree = ""; - }; - 08FB7795FE84155DC02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */, - 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */, - DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */, - DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */, - DC97291309A3E9BF005A68DF /* XMPScanner.cpp */, - ); - name = Source; - path = ../../source; - sourceTree = ""; - }; - 1AB674ADFE9D54B511CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - DCED0E65089E7E6E009B80AF /* XMPCoreCoverage */, - DCE615470951C75C001247EE /* XMPCoreCoverage */, - DC97290309A3E964005A68DF /* DumpScannedXMP */, - DC97290B09A3E969005A68DF /* DumpScannedXMP */, - 018881F50B7C935100EECA52 /* XMPFilesCoverage */, - 018881FD0B7C936A00EECA52 /* XMPFilesCoverage */, - 018882080B7C93AB00EECA52 /* DumpMainXMP */, - 018882110B7C93AF00EECA52 /* DumpMainXMP */, - ); - name = Products; - path = ../..; - sourceTree = BUILT_PRODUCTS_DIR; - }; - DCE4006D0951CC850040D71F /* Build Extras */ = { - isa = PBXGroup; - children = ( - DCE400B00951CF710040D71F /* XMPSamples-Common.xcconfig */, - DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */, - DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */, - ); - name = "Build Extras"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 018881EF0B7C935100EECA52 /* XMPFilesCoverage Debug */ = { - isa = PBXNativeTarget; - buildConfigurationList = 018881F30B7C935100EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Debug" */; - buildPhases = ( - 018881F00B7C935100EECA52 /* Sources */, - 018881F20B7C935100EECA52 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "XMPFilesCoverage Debug"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = 018881F50B7C935100EECA52 /* XMPFilesCoverage */; - productType = "com.apple.product-type.tool"; - }; - 018881F70B7C936A00EECA52 /* XMPFilesCoverage Release */ = { - isa = PBXNativeTarget; - buildConfigurationList = 018881FB0B7C936A00EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Release" */; - buildPhases = ( - 018881F80B7C936A00EECA52 /* Sources */, - 018881FA0B7C936A00EECA52 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "XMPFilesCoverage Release"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = 018881FD0B7C936A00EECA52 /* XMPFilesCoverage */; - productType = "com.apple.product-type.tool"; - }; - 018882010B7C93AB00EECA52 /* DumpMainXMP Debug */ = { - isa = PBXNativeTarget; - buildConfigurationList = 018882060B7C93AB00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Debug" */; - buildPhases = ( - 018882020B7C93AB00EECA52 /* Sources */, - 018882050B7C93AB00EECA52 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "DumpMainXMP Debug"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = 018882080B7C93AB00EECA52 /* DumpMainXMP */; - productType = "com.apple.product-type.tool"; - }; - 0188820A0B7C93AF00EECA52 /* DumpMainXMP Release */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0188820F0B7C93AF00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Release" */; - buildPhases = ( - 0188820B0B7C93AF00EECA52 /* Sources */, - 0188820E0B7C93AF00EECA52 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "DumpMainXMP Release"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = 018882110B7C93AF00EECA52 /* DumpMainXMP */; - productType = "com.apple.product-type.tool"; - }; - DC9728FD09A3E964005A68DF /* DumpScannedXMP Debug */ = { - isa = PBXNativeTarget; - buildConfigurationList = DC97290109A3E964005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Debug" */; - buildPhases = ( - DC9728FE09A3E964005A68DF /* Sources */, - DC97290009A3E964005A68DF /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "DumpScannedXMP Debug"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = DC97290309A3E964005A68DF /* DumpScannedXMP */; - productType = "com.apple.product-type.tool"; - }; - DC97290509A3E969005A68DF /* DumpScannedXMP Release */ = { - isa = PBXNativeTarget; - buildConfigurationList = DC97290909A3E969005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Release" */; - buildPhases = ( - DC97290609A3E969005A68DF /* Sources */, - DC97290809A3E969005A68DF /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "DumpScannedXMP Release"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = DC97290B09A3E969005A68DF /* DumpScannedXMP */; - productType = "com.apple.product-type.tool"; - }; - DCE615410951C75C001247EE /* XMPCoreCoverage Release */ = { - isa = PBXNativeTarget; - buildConfigurationList = DCE615450951C75C001247EE /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Release" */; - buildPhases = ( - DCE615420951C75C001247EE /* Sources */, - DCE615440951C75C001247EE /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "XMPCoreCoverage Release"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = DCE615470951C75C001247EE /* XMPCoreCoverage */; - productType = "com.apple.product-type.tool"; - }; - DCED0E5B089E7E6E009B80AF /* XMPCoreCoverage Debug */ = { - isa = PBXNativeTarget; - buildConfigurationList = DCED0E60089E7E6E009B80AF /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Debug" */; - buildPhases = ( - DCED0E5C089E7E6E009B80AF /* Sources */, - DCED0E5E089E7E6E009B80AF /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "XMPCoreCoverage Debug"; - productInstallPath = "$(HOME)/bin"; - productName = XMPCoverage; - productReference = DCED0E65089E7E6E009B80AF /* XMPCoreCoverage */; - productType = "com.apple.product-type.tool"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 08FB7793FE84155DC02AAC07 /* Project object */ = { - isa = PBXProject; - buildConfigurationList = DC47BE960871F34F0088D201 /* Build configuration list for PBXProject "XMPSamples" */; - hasScannedForEncodings = 1; - mainGroup = 08FB7794FE84155DC02AAC07 /* XMPCoverage */; - projectDirPath = ""; - targets = ( - DC97291609A3EACA005A68DF /* Build All */, - DCED0E5B089E7E6E009B80AF /* XMPCoreCoverage Debug */, - DCE615410951C75C001247EE /* XMPCoreCoverage Release */, - DC9728FD09A3E964005A68DF /* DumpScannedXMP Debug */, - DC97290509A3E969005A68DF /* DumpScannedXMP Release */, - 018881EF0B7C935100EECA52 /* XMPFilesCoverage Debug */, - 018881F70B7C936A00EECA52 /* XMPFilesCoverage Release */, - 018882010B7C93AB00EECA52 /* DumpMainXMP Debug */, - 0188820A0B7C93AF00EECA52 /* DumpMainXMP Release */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXSourcesBuildPhase section */ - 018881F00B7C935100EECA52 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 018881FF0B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 018881F80B7C936A00EECA52 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 018882000B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 018882020B7C93AB00EECA52 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 018882040B7C93AB00EECA52 /* XMPScanner.cpp in Sources */, - 018882130B7C93EE00EECA52 /* DumpMainXMP.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0188820B0B7C93AF00EECA52 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0188820D0B7C93AF00EECA52 /* XMPScanner.cpp in Sources */, - 018882140B7C93EF00EECA52 /* DumpMainXMP.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC9728FE09A3E964005A68DF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DC97291109A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */, - DC97291409A3E9BF005A68DF /* XMPScanner.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC97290609A3E969005A68DF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DC97291209A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */, - DC97291509A3E9BF005A68DF /* XMPScanner.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DCE615420951C75C001247EE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DCE615430951C75C001247EE /* XMPCoreCoverage.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DCED0E5C089E7E6E009B80AF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DCED0E5D089E7E6E009B80AF /* XMPCoreCoverage.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 018882220B7C941400EECA52 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 0188820A0B7C93AF00EECA52 /* DumpMainXMP Release */; - targetProxy = 018882210B7C941400EECA52 /* PBXContainerItemProxy */; - }; - 018882240B7C941400EECA52 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 018882010B7C93AB00EECA52 /* DumpMainXMP Debug */; - targetProxy = 018882230B7C941400EECA52 /* PBXContainerItemProxy */; - }; - 018882260B7C941400EECA52 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 018881F70B7C936A00EECA52 /* XMPFilesCoverage Release */; - targetProxy = 018882250B7C941400EECA52 /* PBXContainerItemProxy */; - }; - 018882280B7C941400EECA52 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 018881EF0B7C935100EECA52 /* XMPFilesCoverage Debug */; - targetProxy = 018882270B7C941400EECA52 /* PBXContainerItemProxy */; - }; - DC97291809A3EAD0005A68DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DCED0E5B089E7E6E009B80AF /* XMPCoreCoverage Debug */; - targetProxy = DC97291709A3EAD0005A68DF /* PBXContainerItemProxy */; - }; - DC97291E09A3EB06005A68DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DCE615410951C75C001247EE /* XMPCoreCoverage Release */; - targetProxy = DC97291D09A3EB06005A68DF /* PBXContainerItemProxy */; - }; - DC97292009A3EB0C005A68DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DC9728FD09A3E964005A68DF /* DumpScannedXMP Debug */; - targetProxy = DC97291F09A3EB0C005A68DF /* PBXContainerItemProxy */; - }; - DC97292209A3EB12005A68DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DC97290509A3E969005A68DF /* DumpScannedXMP Release */; - targetProxy = DC97292109A3EB12005A68DF /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 018881F40B7C935100EECA52 /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; - buildSettings = { - OTHER_LDFLAGS = ( - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", - "-framework", - Carbon, - "-framework", - QuickTime, - ); - PRODUCT_NAME = XMPFilesCoverage; - }; - name = Default; - }; - 018881FC0B7C936A00EECA52 /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; - buildSettings = { - OTHER_LDFLAGS = ( - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", - "-framework", - Carbon, - "-framework", - QuickTime, - ); - PRODUCT_NAME = XMPFilesCoverage; - }; - name = Default; - }; - 018882070B7C93AB00EECA52 /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; - buildSettings = { - OTHER_LDFLAGS = ( - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", - "-framework", - Carbon, - "-framework", - QuickTime, - ); - PRODUCT_NAME = DumpMainXMP; - }; - name = Default; - }; - 018882100B7C93AF00EECA52 /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; - buildSettings = { - OTHER_LDFLAGS = ( - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", - "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", - "-framework", - Carbon, - "-framework", - QuickTime, - ); - PRODUCT_NAME = DumpMainXMP; - }; - name = Default; - }; - DC47BE980871F34F0088D201 /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B00951CF710040D71F /* XMPSamples-Common.xcconfig */; - buildSettings = { - }; - name = Default; - }; - DC97290209A3E964005A68DF /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; - buildSettings = { - PRODUCT_NAME = DumpScannedXMP; - }; - name = Default; - }; - DC97290A09A3E969005A68DF /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; - buildSettings = { - PRODUCT_NAME = DumpScannedXMP; - }; - name = Default; - }; - DC97292809A3EB4F005A68DF /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "Build All"; - }; - name = Default; - }; - DCE615460951C75C001247EE /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; - buildSettings = { - PRODUCT_NAME = XMPCoreCoverage; - }; - name = Default; - }; - DCED0E63089E7E6E009B80AF /* Default */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; - buildSettings = { - PRODUCT_NAME = XMPCoreCoverage; - }; - name = Default; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 018881F30B7C935100EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Debug" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 018881F40B7C935100EECA52 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 018881FB0B7C936A00EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Release" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 018881FC0B7C936A00EECA52 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 018882060B7C93AB00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Debug" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 018882070B7C93AB00EECA52 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 0188820F0B7C93AF00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Release" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 018882100B7C93AF00EECA52 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - DC47BE960871F34F0088D201 /* Build configuration list for PBXProject "XMPSamples" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC47BE980871F34F0088D201 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - DC97290109A3E964005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Debug" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC97290209A3E964005A68DF /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - DC97290909A3E969005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Release" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC97290A09A3E969005A68DF /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - DC97292709A3EB4F005A68DF /* Build configuration list for PBXAggregateTarget "Build All" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC97292809A3EB4F005A68DF /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - DCE615450951C75C001247EE /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Release" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DCE615460951C75C001247EE /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - DCED0E60089E7E6E009B80AF /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Debug" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DCED0E63089E7E6E009B80AF /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; -/* End XCConfigurationList section */ - }; - rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; -} diff --git a/samples/build/xcode2/XMPSamples-Common.xcconfig b/samples/build/xcode2/XMPSamples-Common.xcconfig new file mode 100644 index 0000000..53dcdb0 --- /dev/null +++ b/samples/build/xcode2/XMPSamples-Common.xcconfig @@ -0,0 +1,39 @@ +SAMPLES_ROOT = ${PROJECT_DIR}/../.. + +SOURCE_ROOT = ${SAMPLES_ROOT}/source +SRCROOT = ${SOURCE_ROOT} +XMP_ROOT = ${SAMPLES_ROOT}/../public + +PREBINDING = NO +ZERO_LINK = NO + +ARCHS = ppc i386 +MACOSX_DEPLOYMENT_TARGET = 10.3 +SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk + +SHARED_PRECOMPS_DIR = +PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO +GCC_PRECOMPILE_PREFIX_HEADER = NO + +HEADER_SEARCH_PATHS = ${PROJECT_DIR} ${SOURCE_ROOT} ${XMP_ROOT}/include /Developer/Headers/FlatCarbon +FRAMEWORK_SEARCH_PATHS = ${SDKROOT}/System/Library/Frameworks + +COMMON_DEFINES = MAC_ENV=1 + +GCC_CHAR_IS_UNSIGNED_CHAR = YES +GCC_ENABLE_PASCAL_STRINGS = NO +GCC_SHORT_ENUMS = YES +GCC_ONE_BYTE_BOOL = YES +GCC_NO_COMMON_BLOCKS = YES +GCC_FAST_MATH = YES + +GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES +GCC_WARN_ABOUT_RETURN_TYPE = YES +GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES +GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES +GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES +GCC_WARN_MISSING_PARENTHESES = YES +GCC_WARN_CHECK_SWITCH_STATEMENTS = YES +GCC_WARN_UNKNOWN_PRAGMAS = YES +GCC_WARN_SIGN_COMPARE = YES +GCC_WARN_ABOUT_MISSING_NEWLINE = YES diff --git a/samples/build/xcode2/XMPSamples-Debug.xcconfig b/samples/build/xcode2/XMPSamples-Debug.xcconfig new file mode 100644 index 0000000..78a602e --- /dev/null +++ b/samples/build/xcode2/XMPSamples-Debug.xcconfig @@ -0,0 +1,15 @@ +BUILD_MODE = debug +LIB_SUFFIX = StaticDebug + +OTHER_LDFLAGS = ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a -framework Carbon + +OBJROOT = ${SAMPLES_ROOT}/intermediate/macintosh/${BUILD_MODE} +SYMROOT = ${SAMPLES_ROOT}/target/macintosh/${BUILD_MODE} + +CONFIGURATION_BUILD_DIR = ${SYMROOT} + +GCC_PREPROCESSOR_DEFINITIONS = ${COMMON_DEFINES} DEBUG=1 _DEBUG=1 + +GCC_GENERATE_DEBUGGING_SYMBOLS = YES +GCC_DEBUGGING_SYMBOLS = full +GCC_OPTIMIZATION_LEVEL = 0 diff --git a/samples/build/xcode2/XMPSamples-Release.xcconfig b/samples/build/xcode2/XMPSamples-Release.xcconfig new file mode 100644 index 0000000..87c599a --- /dev/null +++ b/samples/build/xcode2/XMPSamples-Release.xcconfig @@ -0,0 +1,15 @@ +BUILD_MODE = release +LIB_SUFFIX = StaticRelease + +OTHER_LDFLAGS = ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a ${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a -framework Carbon + +OBJROOT = ${SAMPLES_ROOT}/intermediate/macintosh/${BUILD_MODE} +SYMROOT = ${SAMPLES_ROOT}/target/macintosh/${BUILD_MODE} + +CONFIGURATION_BUILD_DIR = ${SYMROOT} + +GCC_PREPROCESSOR_DEFINITIONS = ${COMMON_DEFINES} NDEBUG=1 + +GCC_GENERATE_DEBUGGING_SYMBOLS = NO +GCC_DEBUGGING_SYMBOLS = used +GCC_OPTIMIZATION_LEVEL = s diff --git a/samples/build/xcode2/XMPSamples.xcodeproj/project.pbxproj b/samples/build/xcode2/XMPSamples.xcodeproj/project.pbxproj new file mode 100644 index 0000000..5ac220e --- /dev/null +++ b/samples/build/xcode2/XMPSamples.xcodeproj/project.pbxproj @@ -0,0 +1,1761 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXAggregateTarget section */ + DC97291609A3EACA005A68DF /* Build All */ = { + isa = PBXAggregateTarget; + buildConfigurationList = DC97292709A3EB4F005A68DF /* Build configuration list for PBXAggregateTarget "Build All" */; + buildPhases = ( + ); + dependencies = ( + DC97291809A3EAD0005A68DF /* PBXTargetDependency */, + DC97291E09A3EB06005A68DF /* PBXTargetDependency */, + DC97292009A3EB0C005A68DF /* PBXTargetDependency */, + DC97292209A3EB12005A68DF /* PBXTargetDependency */, + 018882280B7C941400EECA52 /* PBXTargetDependency */, + 018882260B7C941400EECA52 /* PBXTargetDependency */, + 018882240B7C941400EECA52 /* PBXTargetDependency */, + 018882220B7C941400EECA52 /* PBXTargetDependency */, + 01C2B04E0E3A0681003F4586 /* PBXTargetDependency */, + 01C2B04C0E3A0681003F4586 /* PBXTargetDependency */, + 01C2B0520E3A0684003F4586 /* PBXTargetDependency */, + 01C2B0500E3A0684003F4586 /* PBXTargetDependency */, + 01C2B0810E3A0776003F4586 /* PBXTargetDependency */, + 01C2B07F0E3A0776003F4586 /* PBXTargetDependency */, + 01C2B07D0E3A0776003F4586 /* PBXTargetDependency */, + 01C2B07B0E3A0776003F4586 /* PBXTargetDependency */, + 01C2B09E0E3A081C003F4586 /* PBXTargetDependency */, + 01C2B09C0E3A081C003F4586 /* PBXTargetDependency */, + 01C2B0D30E3A0984003F4586 /* PBXTargetDependency */, + 01C2B0D10E3A0984003F4586 /* PBXTargetDependency */, + ); + name = "Build All"; + productName = "Build All"; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 018881FF0B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */; }; + 018882000B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */; }; + 018882040B7C93AB00EECA52 /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; + 0188820D0B7C93AF00EECA52 /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; + 018882130B7C93EE00EECA52 /* DumpMainXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */; }; + 018882140B7C93EF00EECA52 /* DumpMainXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */; }; + 01C2AFDB0E3A023B003F4586 /* CustomSchema.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2AFDA0E3A023B003F4586 /* CustomSchema.cpp */; }; + 01C2AFDC0E3A023B003F4586 /* CustomSchema.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2AFDA0E3A023B003F4586 /* CustomSchema.cpp */; }; + 01C2AFF30E3A0398003F4586 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2AFF20E3A0398003F4586 /* main.cpp */; }; + 01C2AFF40E3A0398003F4586 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2AFF20E3A0398003F4586 /* main.cpp */; }; + 01C2B0300E3A04F9003F4586 /* DumpFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0220E3A04F9003F4586 /* DumpFile.cpp */; }; + 01C2B0320E3A04F9003F4586 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0260E3A04F9003F4586 /* Log.cpp */; }; + 01C2B0340E3A04F9003F4586 /* OutputUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02A0E3A04F9003F4586 /* OutputUtils.cpp */; }; + 01C2B0350E3A04F9003F4586 /* QEScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02C0E3A04F9003F4586 /* QEScanner.cpp */; }; + 01C2B0360E3A04F9003F4586 /* TagTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02E0E3A04F9003F4586 /* TagTree.cpp */; }; + 01C2B0380E3A04F9003F4586 /* DumpFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0220E3A04F9003F4586 /* DumpFile.cpp */; }; + 01C2B03A0E3A04F9003F4586 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0260E3A04F9003F4586 /* Log.cpp */; }; + 01C2B03C0E3A04F9003F4586 /* OutputUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02A0E3A04F9003F4586 /* OutputUtils.cpp */; }; + 01C2B03D0E3A04F9003F4586 /* QEScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02C0E3A04F9003F4586 /* QEScanner.cpp */; }; + 01C2B03E0E3A04F9003F4586 /* TagTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02E0E3A04F9003F4586 /* TagTree.cpp */; }; + 01C2B0410E3A0591003F4586 /* LargeFileAccess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B03F0E3A0523003F4586 /* LargeFileAccess.cpp */; }; + 01C2B0420E3A0591003F4586 /* LargeFileAccess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B03F0E3A0523003F4586 /* LargeFileAccess.cpp */; }; + 01C2B0780E3A076E003F4586 /* ReadingXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0770E3A076E003F4586 /* ReadingXMP.cpp */; }; + 01C2B0790E3A076E003F4586 /* ReadingXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0770E3A076E003F4586 /* ReadingXMP.cpp */; }; + 01C2B0960E3A07F5003F4586 /* ModifyingXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0740E3A0765003F4586 /* ModifyingXMP.cpp */; }; + 01C2B0970E3A07F6003F4586 /* ModifyingXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0740E3A0765003F4586 /* ModifyingXMP.cpp */; }; + 01C2B09A0E3A0805003F4586 /* XmpIterations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0980E3A0805003F4586 /* XmpIterations.cpp */; }; + 01C2B0B20E3A08A3003F4586 /* XmpIterations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0980E3A0805003F4586 /* XmpIterations.cpp */; }; + 01C2B0B90E3A08B3003F4586 /* Actions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0B50E3A08B3003F4586 /* Actions.cpp */; }; + 01C2B0BA0E3A08B3003F4586 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0B70E3A08B3003F4586 /* main.cpp */; }; + 01C2B0BB0E3A08B3003F4586 /* PrintUsage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0B80E3A08B3003F4586 /* PrintUsage.cpp */; }; + 01C2B0BC0E3A08B3003F4586 /* Actions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0B50E3A08B3003F4586 /* Actions.cpp */; }; + 01C2B0BD0E3A08B3003F4586 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0B70E3A08B3003F4586 /* main.cpp */; }; + 01C2B0BE0E3A08B3003F4586 /* PrintUsage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0B80E3A08B3003F4586 /* PrintUsage.cpp */; }; + 01C2B0C00E3A08DB003F4586 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0260E3A04F9003F4586 /* Log.cpp */; }; + 01C2B0C10E3A08DC003F4586 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B0260E3A04F9003F4586 /* Log.cpp */; }; + 01C2B0C20E3A08E8003F4586 /* LargeFileAccess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B03F0E3A0523003F4586 /* LargeFileAccess.cpp */; }; + 01C2B0C30E3A08E9003F4586 /* LargeFileAccess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B03F0E3A0523003F4586 /* LargeFileAccess.cpp */; }; + 01C2B0CB0E3A0947003F4586 /* OutputUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02A0E3A04F9003F4586 /* OutputUtils.cpp */; }; + 01C2B0CC0E3A0948003F4586 /* OutputUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01C2B02A0E3A04F9003F4586 /* OutputUtils.cpp */; }; + DC97291109A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */; }; + DC97291209A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */; }; + DC97291409A3E9BF005A68DF /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; + DC97291509A3E9BF005A68DF /* XMPScanner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC97291309A3E9BF005A68DF /* XMPScanner.cpp */; }; + DCE615430951C75C001247EE /* XMPCoreCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */; }; + DCED0E5D089E7E6E009B80AF /* XMPCoreCoverage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 018882210B7C941400EECA52 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0188820A0B7C93AF00EECA52; + remoteInfo = "DumpMainXMP Release"; + }; + 018882230B7C941400EECA52 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 018882010B7C93AB00EECA52; + remoteInfo = "DumpMainXMP Debug"; + }; + 018882250B7C941400EECA52 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 018881F70B7C936A00EECA52; + remoteInfo = "XMPFilesCoverage Release"; + }; + 018882270B7C941400EECA52 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 018881EF0B7C935100EECA52; + remoteInfo = "XMPFilesCoverage Debug"; + }; + 01C2B04B0E3A0681003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2AFD20E3A01F9003F4586; + remoteInfo = "CustomSchema Release"; + }; + 01C2B04D0E3A0681003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2AFCA0E3A01F6003F4586; + remoteInfo = "CustomSchema Debug"; + }; + 01C2B04F0E3A0684003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2AFEA0E3A0364003F4586; + remoteInfo = "Dumpfile Release"; + }; + 01C2B0510E3A0684003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2AFE20E3A035E003F4586; + remoteInfo = "Dumpfile Debug"; + }; + 01C2B07A0E3A0776003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B06B0E3A06C4003F4586; + remoteInfo = "ModifyingXMP Release"; + }; + 01C2B07C0E3A0776003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B0630E3A06C4003F4586; + remoteInfo = "ModifyingXMP Debug"; + }; + 01C2B07E0E3A0776003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B05B0E3A069A003F4586; + remoteInfo = "ReadingXMP Release"; + }; + 01C2B0800E3A0776003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B0530E3A069A003F4586; + remoteInfo = "ReadingXMP Debug"; + }; + 01C2B09B0E3A081C003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B08E0E3A07A7003F4586; + remoteInfo = "XMPIterations Release"; + }; + 01C2B09D0E3A081C003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B0860E3A07A7003F4586; + remoteInfo = "XMPIterations Debug"; + }; + 01C2B0D00E3A0984003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B0AA0E3A084F003F4586; + remoteInfo = "XMPCommand Release"; + }; + 01C2B0D20E3A0984003F4586 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C2B0A20E3A084F003F4586; + remoteInfo = "XMPCommand Debug"; + }; + DC97291709A3EAD0005A68DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DCED0E5B089E7E6E009B80AF; + remoteInfo = "XMPCoverage Debug"; + }; + DC97291D09A3EB06005A68DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DCE615410951C75C001247EE; + remoteInfo = "XMPCoverage Release"; + }; + DC97291F09A3EB0C005A68DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC9728FD09A3E964005A68DF; + remoteInfo = "DumpXMP Debug"; + }; + DC97292109A3EB12005A68DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC97290509A3E969005A68DF; + remoteInfo = "DumpXMP Release"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DumpMainXMP.cpp; sourceTree = ""; }; + 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = XMPFilesCoverage.cpp; sourceTree = ""; }; + 018881F50B7C935100EECA52 /* XMPFilesCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPFilesCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; + 018881FD0B7C936A00EECA52 /* XMPFilesCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPFilesCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; + 018882080B7C93AB00EECA52 /* DumpMainXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpMainXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + 018882110B7C93AF00EECA52 /* DumpMainXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpMainXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2AFD00E3A01F6003F4586 /* CustomSchema */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = CustomSchema; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2AFD80E3A01F9003F4586 /* CustomSchema */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = CustomSchema; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2AFDA0E3A023B003F4586 /* CustomSchema.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CustomSchema.cpp; sourceTree = ""; }; + 01C2AFE80E3A035E003F4586 /* dumpfile */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = dumpfile; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2AFF00E3A0364003F4586 /* dumpfile */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = dumpfile; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2AFF20E3A0398003F4586 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = dumpfile/main.cpp; sourceTree = ""; }; + 01C2B01E0E3A04F9003F4586 /* TagTree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagTree.h; sourceTree = ""; }; + 01C2B01F0E3A04F9003F4586 /* globals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = globals.h; sourceTree = ""; }; + 01C2B0220E3A04F9003F4586 /* DumpFile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DumpFile.cpp; sourceTree = ""; }; + 01C2B0230E3A04F9003F4586 /* DumpFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DumpFile.h; sourceTree = ""; }; + 01C2B0260E3A04F9003F4586 /* Log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Log.cpp; sourceTree = ""; }; + 01C2B0270E3A04F9003F4586 /* Log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Log.h; sourceTree = ""; }; + 01C2B02A0E3A04F9003F4586 /* OutputUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OutputUtils.cpp; sourceTree = ""; }; + 01C2B02B0E3A04F9003F4586 /* OutputUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OutputUtils.h; sourceTree = ""; }; + 01C2B02C0E3A04F9003F4586 /* QEScanner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = QEScanner.cpp; sourceTree = ""; }; + 01C2B02D0E3A04F9003F4586 /* QEScanner.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = QEScanner.hpp; sourceTree = ""; }; + 01C2B02E0E3A04F9003F4586 /* TagTree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagTree.cpp; sourceTree = ""; }; + 01C2B03F0E3A0523003F4586 /* LargeFileAccess.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; name = LargeFileAccess.cpp; path = ../../../source/common/LargeFileAccess.cpp; sourceTree = ""; }; + 01C2B0400E3A0523003F4586 /* LargeFileAccess.hpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.h; name = LargeFileAccess.hpp; path = ../../../source/common/LargeFileAccess.hpp; sourceTree = ""; }; + 01C2B0590E3A069A003F4586 /* ReadingXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ReadingXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0610E3A069A003F4586 /* ReadingXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ReadingXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0690E3A06C4003F4586 /* ModifyingXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ModifyingXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0710E3A06C4003F4586 /* ModifyingXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ModifyingXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0740E3A0765003F4586 /* ModifyingXMP.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ModifyingXMP.cpp; sourceTree = ""; }; + 01C2B0770E3A076E003F4586 /* ReadingXMP.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ReadingXMP.cpp; sourceTree = ""; }; + 01C2B08C0E3A07A7003F4586 /* XMPIterations */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPIterations; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0940E3A07A7003F4586 /* XMPIterations */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPIterations; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0980E3A0805003F4586 /* XmpIterations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmpIterations.cpp; sourceTree = ""; }; + 01C2B0A80E3A084F003F4586 /* xmpcommand */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xmpcommand; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0B00E3A084F003F4586 /* xmpcommand */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xmpcommand; sourceTree = BUILT_PRODUCTS_DIR; }; + 01C2B0B40E3A08B3003F4586 /* PrintUsage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PrintUsage.h; path = xmpcommand/PrintUsage.h; sourceTree = ""; }; + 01C2B0B50E3A08B3003F4586 /* Actions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Actions.cpp; path = xmpcommand/Actions.cpp; sourceTree = ""; }; + 01C2B0B60E3A08B3003F4586 /* Actions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Actions.h; path = xmpcommand/Actions.h; sourceTree = ""; }; + 01C2B0B70E3A08B3003F4586 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = xmpcommand/main.cpp; sourceTree = ""; }; + 01C2B0B80E3A08B3003F4586 /* PrintUsage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PrintUsage.cpp; path = xmpcommand/PrintUsage.cpp; sourceTree = ""; }; + DC97290309A3E964005A68DF /* DumpScannedXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpScannedXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + DC97290B09A3E969005A68DF /* DumpScannedXMP */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpScannedXMP; sourceTree = BUILT_PRODUCTS_DIR; }; + DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DumpScannedXMP.cpp; sourceTree = ""; }; + DC97291309A3E9BF005A68DF /* XMPScanner.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = XMPScanner.cpp; sourceTree = ""; }; + DCE400B00951CF710040D71F /* XMPSamples-Common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = "XMPSamples-Common.xcconfig"; sourceTree = ""; }; + DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = "XMPSamples-Debug.xcconfig"; sourceTree = ""; }; + DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = "XMPSamples-Release.xcconfig"; sourceTree = ""; }; + DCE615470951C75C001247EE /* XMPCoreCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPCoreCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; + DCED0E65089E7E6E009B80AF /* XMPCoreCoverage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XMPCoreCoverage; sourceTree = BUILT_PRODUCTS_DIR; }; + DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = XMPCoreCoverage.cpp; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 018881F20B7C935100EECA52 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 018881FA0B7C936A00EECA52 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 018882050B7C93AB00EECA52 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0188820E0B7C93AF00EECA52 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFCD0E3A01F6003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFD50E3A01F9003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFE50E3A035E003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFED0E3A0364003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0560E3A069A003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B05E0E3A069A003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0660E3A06C4003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B06E0E3A06C4003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0890E3A07A7003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0910E3A07A7003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0A50E3A084F003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0AD0E3A084F003F4586 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC97290009A3E964005A68DF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC97290809A3E969005A68DF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCE615440951C75C001247EE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCED0E5E089E7E6E009B80AF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 01C2AFB40E39EAD6003F4586 /* XMPIterations */ = { + isa = PBXGroup; + children = ( + 01C2B0980E3A0805003F4586 /* XmpIterations.cpp */, + ); + name = XMPIterations; + sourceTree = ""; + }; + 01C2AFB50E39EAD8003F4586 /* XMPFilesCoverage */ = { + isa = PBXGroup; + children = ( + 018881EE0B7C934100EECA52 /* XMPFilesCoverage.cpp */, + ); + name = XMPFilesCoverage; + sourceTree = ""; + }; + 01C2AFB60E39EADB003F4586 /* XMPCoreCoverage */ = { + isa = PBXGroup; + children = ( + DCF3A64D087F1D9000FEB713 /* XMPCoreCoverage.cpp */, + ); + name = XMPCoreCoverage; + sourceTree = ""; + }; + 01C2AFB70E39EADD003F4586 /* XMPCommand */ = { + isa = PBXGroup; + children = ( + 01C2B0B40E3A08B3003F4586 /* PrintUsage.h */, + 01C2B0B50E3A08B3003F4586 /* Actions.cpp */, + 01C2B0B60E3A08B3003F4586 /* Actions.h */, + 01C2B0B70E3A08B3003F4586 /* main.cpp */, + 01C2B0B80E3A08B3003F4586 /* PrintUsage.cpp */, + ); + name = XMPCommand; + sourceTree = ""; + }; + 01C2AFB80E39EAF3003F4586 /* ReadingXMP */ = { + isa = PBXGroup; + children = ( + 01C2B0770E3A076E003F4586 /* ReadingXMP.cpp */, + ); + name = ReadingXMP; + sourceTree = ""; + }; + 01C2AFB90E39EAF5003F4586 /* ModifyingXMP */ = { + isa = PBXGroup; + children = ( + 01C2B0740E3A0765003F4586 /* ModifyingXMP.cpp */, + ); + name = ModifyingXMP; + sourceTree = ""; + }; + 01C2AFBA0E39EAFA003F4586 /* DumpScannedXMP */ = { + isa = PBXGroup; + children = ( + DC97291309A3E9BF005A68DF /* XMPScanner.cpp */, + DC97291009A3E9B7005A68DF /* DumpScannedXMP.cpp */, + ); + name = DumpScannedXMP; + sourceTree = ""; + }; + 01C2AFBB0E39EAFD003F4586 /* DumpMainXMP */ = { + isa = PBXGroup; + children = ( + 018881ED0B7C934100EECA52 /* DumpMainXMP.cpp */, + ); + name = DumpMainXMP; + sourceTree = ""; + }; + 01C2AFBC0E39EAFF003F4586 /* DumpFile */ = { + isa = PBXGroup; + children = ( + 01C2AFF20E3A0398003F4586 /* main.cpp */, + ); + name = DumpFile; + sourceTree = ""; + }; + 01C2AFBD0E39EB01003F4586 /* CustomSchema */ = { + isa = PBXGroup; + children = ( + 01C2AFDA0E3A023B003F4586 /* CustomSchema.cpp */, + ); + name = CustomSchema; + sourceTree = ""; + }; + 01C2AFF60E3A03F3003F4586 /* common */ = { + isa = PBXGroup; + children = ( + 01C2B03F0E3A0523003F4586 /* LargeFileAccess.cpp */, + 01C2B0400E3A0523003F4586 /* LargeFileAccess.hpp */, + 01C2B01E0E3A04F9003F4586 /* TagTree.h */, + 01C2B01F0E3A04F9003F4586 /* globals.h */, + 01C2B0220E3A04F9003F4586 /* DumpFile.cpp */, + 01C2B0230E3A04F9003F4586 /* DumpFile.h */, + 01C2B0260E3A04F9003F4586 /* Log.cpp */, + 01C2B0270E3A04F9003F4586 /* Log.h */, + 01C2B02A0E3A04F9003F4586 /* OutputUtils.cpp */, + 01C2B02B0E3A04F9003F4586 /* OutputUtils.h */, + 01C2B02C0E3A04F9003F4586 /* QEScanner.cpp */, + 01C2B02D0E3A04F9003F4586 /* QEScanner.hpp */, + 01C2B02E0E3A04F9003F4586 /* TagTree.cpp */, + ); + path = common; + sourceTree = ""; + }; + 08FB7794FE84155DC02AAC07 /* XMPCoverage */ = { + isa = PBXGroup; + children = ( + 08FB7795FE84155DC02AAC07 /* Source */, + DCE4006D0951CC850040D71F /* Build Extras */, + 1AB674ADFE9D54B511CA2CBB /* Products */, + ); + name = XMPCoverage; + sourceTree = ""; + }; + 08FB7795FE84155DC02AAC07 /* Source */ = { + isa = PBXGroup; + children = ( + 01C2AFF60E3A03F3003F4586 /* common */, + 01C2AFBD0E39EB01003F4586 /* CustomSchema */, + 01C2AFBC0E39EAFF003F4586 /* DumpFile */, + 01C2AFBB0E39EAFD003F4586 /* DumpMainXMP */, + 01C2AFBA0E39EAFA003F4586 /* DumpScannedXMP */, + 01C2AFB90E39EAF5003F4586 /* ModifyingXMP */, + 01C2AFB80E39EAF3003F4586 /* ReadingXMP */, + 01C2AFB70E39EADD003F4586 /* XMPCommand */, + 01C2AFB60E39EADB003F4586 /* XMPCoreCoverage */, + 01C2AFB50E39EAD8003F4586 /* XMPFilesCoverage */, + 01C2AFB40E39EAD6003F4586 /* XMPIterations */, + ); + name = Source; + path = ../../source; + sourceTree = ""; + }; + 1AB674ADFE9D54B511CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + DCED0E65089E7E6E009B80AF /* XMPCoreCoverage */, + DCE615470951C75C001247EE /* XMPCoreCoverage */, + DC97290309A3E964005A68DF /* DumpScannedXMP */, + DC97290B09A3E969005A68DF /* DumpScannedXMP */, + 018881F50B7C935100EECA52 /* XMPFilesCoverage */, + 018881FD0B7C936A00EECA52 /* XMPFilesCoverage */, + 018882080B7C93AB00EECA52 /* DumpMainXMP */, + 018882110B7C93AF00EECA52 /* DumpMainXMP */, + 01C2AFD00E3A01F6003F4586 /* CustomSchema */, + 01C2AFD80E3A01F9003F4586 /* CustomSchema */, + 01C2AFE80E3A035E003F4586 /* dumpfile */, + 01C2AFF00E3A0364003F4586 /* dumpfile */, + 01C2B0590E3A069A003F4586 /* ReadingXMP */, + 01C2B0610E3A069A003F4586 /* ReadingXMP */, + 01C2B0690E3A06C4003F4586 /* ModifyingXMP */, + 01C2B0710E3A06C4003F4586 /* ModifyingXMP */, + 01C2B08C0E3A07A7003F4586 /* XMPIterations */, + 01C2B0940E3A07A7003F4586 /* XMPIterations */, + 01C2B0A80E3A084F003F4586 /* xmpcommand */, + 01C2B0B00E3A084F003F4586 /* xmpcommand */, + ); + name = Products; + path = ../..; + sourceTree = BUILT_PRODUCTS_DIR; + }; + DCE4006D0951CC850040D71F /* Build Extras */ = { + isa = PBXGroup; + children = ( + DCE400B00951CF710040D71F /* XMPSamples-Common.xcconfig */, + DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */, + DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */, + ); + name = "Build Extras"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 018881EF0B7C935100EECA52 /* XMPFilesCoverage Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 018881F30B7C935100EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Debug" */; + buildPhases = ( + 018881F00B7C935100EECA52 /* Sources */, + 018881F20B7C935100EECA52 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPFilesCoverage Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 018881F50B7C935100EECA52 /* XMPFilesCoverage */; + productType = "com.apple.product-type.tool"; + }; + 018881F70B7C936A00EECA52 /* XMPFilesCoverage Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 018881FB0B7C936A00EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Release" */; + buildPhases = ( + 018881F80B7C936A00EECA52 /* Sources */, + 018881FA0B7C936A00EECA52 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPFilesCoverage Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 018881FD0B7C936A00EECA52 /* XMPFilesCoverage */; + productType = "com.apple.product-type.tool"; + }; + 018882010B7C93AB00EECA52 /* DumpMainXMP Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 018882060B7C93AB00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Debug" */; + buildPhases = ( + 018882020B7C93AB00EECA52 /* Sources */, + 018882050B7C93AB00EECA52 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "DumpMainXMP Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 018882080B7C93AB00EECA52 /* DumpMainXMP */; + productType = "com.apple.product-type.tool"; + }; + 0188820A0B7C93AF00EECA52 /* DumpMainXMP Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0188820F0B7C93AF00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Release" */; + buildPhases = ( + 0188820B0B7C93AF00EECA52 /* Sources */, + 0188820E0B7C93AF00EECA52 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "DumpMainXMP Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 018882110B7C93AF00EECA52 /* DumpMainXMP */; + productType = "com.apple.product-type.tool"; + }; + 01C2AFCA0E3A01F6003F4586 /* CustomSchema Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2AFCE0E3A01F6003F4586 /* Build configuration list for PBXNativeTarget "CustomSchema Debug" */; + buildPhases = ( + 01C2AFCB0E3A01F6003F4586 /* Sources */, + 01C2AFCD0E3A01F6003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "CustomSchema Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2AFD00E3A01F6003F4586 /* CustomSchema */; + productType = "com.apple.product-type.tool"; + }; + 01C2AFD20E3A01F9003F4586 /* CustomSchema Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2AFD60E3A01F9003F4586 /* Build configuration list for PBXNativeTarget "CustomSchema Release" */; + buildPhases = ( + 01C2AFD30E3A01F9003F4586 /* Sources */, + 01C2AFD50E3A01F9003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "CustomSchema Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2AFD80E3A01F9003F4586 /* CustomSchema */; + productType = "com.apple.product-type.tool"; + }; + 01C2AFE20E3A035E003F4586 /* Dumpfile Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2AFE60E3A035E003F4586 /* Build configuration list for PBXNativeTarget "Dumpfile Debug" */; + buildPhases = ( + 01C2AFE30E3A035E003F4586 /* Sources */, + 01C2AFE50E3A035E003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Dumpfile Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2AFE80E3A035E003F4586 /* dumpfile */; + productType = "com.apple.product-type.tool"; + }; + 01C2AFEA0E3A0364003F4586 /* Dumpfile Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2AFEE0E3A0364003F4586 /* Build configuration list for PBXNativeTarget "Dumpfile Release" */; + buildPhases = ( + 01C2AFEB0E3A0364003F4586 /* Sources */, + 01C2AFED0E3A0364003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Dumpfile Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2AFF00E3A0364003F4586 /* dumpfile */; + productType = "com.apple.product-type.tool"; + }; + 01C2B0530E3A069A003F4586 /* ReadingXMP Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B0570E3A069A003F4586 /* Build configuration list for PBXNativeTarget "ReadingXMP Debug" */; + buildPhases = ( + 01C2B0540E3A069A003F4586 /* Sources */, + 01C2B0560E3A069A003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ReadingXMP Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B0590E3A069A003F4586 /* ReadingXMP */; + productType = "com.apple.product-type.tool"; + }; + 01C2B05B0E3A069A003F4586 /* ReadingXMP Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B05F0E3A069A003F4586 /* Build configuration list for PBXNativeTarget "ReadingXMP Release" */; + buildPhases = ( + 01C2B05C0E3A069A003F4586 /* Sources */, + 01C2B05E0E3A069A003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ReadingXMP Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B0610E3A069A003F4586 /* ReadingXMP */; + productType = "com.apple.product-type.tool"; + }; + 01C2B0630E3A06C4003F4586 /* ModifyingXMP Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B0670E3A06C4003F4586 /* Build configuration list for PBXNativeTarget "ModifyingXMP Debug" */; + buildPhases = ( + 01C2B0640E3A06C4003F4586 /* Sources */, + 01C2B0660E3A06C4003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ModifyingXMP Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B0690E3A06C4003F4586 /* ModifyingXMP */; + productType = "com.apple.product-type.tool"; + }; + 01C2B06B0E3A06C4003F4586 /* ModifyingXMP Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B06F0E3A06C4003F4586 /* Build configuration list for PBXNativeTarget "ModifyingXMP Release" */; + buildPhases = ( + 01C2B06C0E3A06C4003F4586 /* Sources */, + 01C2B06E0E3A06C4003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ModifyingXMP Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B0710E3A06C4003F4586 /* ModifyingXMP */; + productType = "com.apple.product-type.tool"; + }; + 01C2B0860E3A07A7003F4586 /* XMPIterations Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B08A0E3A07A7003F4586 /* Build configuration list for PBXNativeTarget "XMPIterations Debug" */; + buildPhases = ( + 01C2B0870E3A07A7003F4586 /* Sources */, + 01C2B0890E3A07A7003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPIterations Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B08C0E3A07A7003F4586 /* XMPIterations */; + productType = "com.apple.product-type.tool"; + }; + 01C2B08E0E3A07A7003F4586 /* XMPIterations Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B0920E3A07A7003F4586 /* Build configuration list for PBXNativeTarget "XMPIterations Release" */; + buildPhases = ( + 01C2B08F0E3A07A7003F4586 /* Sources */, + 01C2B0910E3A07A7003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPIterations Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B0940E3A07A7003F4586 /* XMPIterations */; + productType = "com.apple.product-type.tool"; + }; + 01C2B0A20E3A084F003F4586 /* XMPCommand Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B0A60E3A084F003F4586 /* Build configuration list for PBXNativeTarget "XMPCommand Debug" */; + buildPhases = ( + 01C2B0A30E3A084F003F4586 /* Sources */, + 01C2B0A50E3A084F003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPCommand Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B0A80E3A084F003F4586 /* xmpcommand */; + productType = "com.apple.product-type.tool"; + }; + 01C2B0AA0E3A084F003F4586 /* XMPCommand Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01C2B0AE0E3A084F003F4586 /* Build configuration list for PBXNativeTarget "XMPCommand Release" */; + buildPhases = ( + 01C2B0AB0E3A084F003F4586 /* Sources */, + 01C2B0AD0E3A084F003F4586 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPCommand Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = 01C2B0B00E3A084F003F4586 /* xmpcommand */; + productType = "com.apple.product-type.tool"; + }; + DC9728FD09A3E964005A68DF /* DumpScannedXMP Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC97290109A3E964005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Debug" */; + buildPhases = ( + DC9728FE09A3E964005A68DF /* Sources */, + DC97290009A3E964005A68DF /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "DumpScannedXMP Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = DC97290309A3E964005A68DF /* DumpScannedXMP */; + productType = "com.apple.product-type.tool"; + }; + DC97290509A3E969005A68DF /* DumpScannedXMP Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = DC97290909A3E969005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Release" */; + buildPhases = ( + DC97290609A3E969005A68DF /* Sources */, + DC97290809A3E969005A68DF /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "DumpScannedXMP Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = DC97290B09A3E969005A68DF /* DumpScannedXMP */; + productType = "com.apple.product-type.tool"; + }; + DCE615410951C75C001247EE /* XMPCoreCoverage Release */ = { + isa = PBXNativeTarget; + buildConfigurationList = DCE615450951C75C001247EE /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Release" */; + buildPhases = ( + DCE615420951C75C001247EE /* Sources */, + DCE615440951C75C001247EE /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPCoreCoverage Release"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = DCE615470951C75C001247EE /* XMPCoreCoverage */; + productType = "com.apple.product-type.tool"; + }; + DCED0E5B089E7E6E009B80AF /* XMPCoreCoverage Debug */ = { + isa = PBXNativeTarget; + buildConfigurationList = DCED0E60089E7E6E009B80AF /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Debug" */; + buildPhases = ( + DCED0E5C089E7E6E009B80AF /* Sources */, + DCED0E5E089E7E6E009B80AF /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "XMPCoreCoverage Debug"; + productInstallPath = "$(HOME)/bin"; + productName = XMPCoverage; + productReference = DCED0E65089E7E6E009B80AF /* XMPCoreCoverage */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 08FB7793FE84155DC02AAC07 /* Project object */ = { + isa = PBXProject; + buildConfigurationList = DC47BE960871F34F0088D201 /* Build configuration list for PBXProject "XMPSamples" */; + compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 1; + mainGroup = 08FB7794FE84155DC02AAC07 /* XMPCoverage */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + DC97291609A3EACA005A68DF /* Build All */, + DCED0E5B089E7E6E009B80AF /* XMPCoreCoverage Debug */, + DCE615410951C75C001247EE /* XMPCoreCoverage Release */, + DC9728FD09A3E964005A68DF /* DumpScannedXMP Debug */, + DC97290509A3E969005A68DF /* DumpScannedXMP Release */, + 018881EF0B7C935100EECA52 /* XMPFilesCoverage Debug */, + 018881F70B7C936A00EECA52 /* XMPFilesCoverage Release */, + 018882010B7C93AB00EECA52 /* DumpMainXMP Debug */, + 0188820A0B7C93AF00EECA52 /* DumpMainXMP Release */, + 01C2AFCA0E3A01F6003F4586 /* CustomSchema Debug */, + 01C2AFD20E3A01F9003F4586 /* CustomSchema Release */, + 01C2AFE20E3A035E003F4586 /* Dumpfile Debug */, + 01C2AFEA0E3A0364003F4586 /* Dumpfile Release */, + 01C2B0530E3A069A003F4586 /* ReadingXMP Debug */, + 01C2B05B0E3A069A003F4586 /* ReadingXMP Release */, + 01C2B0630E3A06C4003F4586 /* ModifyingXMP Debug */, + 01C2B06B0E3A06C4003F4586 /* ModifyingXMP Release */, + 01C2B0860E3A07A7003F4586 /* XMPIterations Debug */, + 01C2B08E0E3A07A7003F4586 /* XMPIterations Release */, + 01C2B0A20E3A084F003F4586 /* XMPCommand Debug */, + 01C2B0AA0E3A084F003F4586 /* XMPCommand Release */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 018881F00B7C935100EECA52 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 018881FF0B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 018881F80B7C936A00EECA52 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 018882000B7C93A300EECA52 /* XMPFilesCoverage.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 018882020B7C93AB00EECA52 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 018882040B7C93AB00EECA52 /* XMPScanner.cpp in Sources */, + 018882130B7C93EE00EECA52 /* DumpMainXMP.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0188820B0B7C93AF00EECA52 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0188820D0B7C93AF00EECA52 /* XMPScanner.cpp in Sources */, + 018882140B7C93EF00EECA52 /* DumpMainXMP.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFCB0E3A01F6003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2AFDC0E3A023B003F4586 /* CustomSchema.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFD30E3A01F9003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2AFDB0E3A023B003F4586 /* CustomSchema.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFE30E3A035E003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2AFF30E3A0398003F4586 /* main.cpp in Sources */, + 01C2B0300E3A04F9003F4586 /* DumpFile.cpp in Sources */, + 01C2B0320E3A04F9003F4586 /* Log.cpp in Sources */, + 01C2B0340E3A04F9003F4586 /* OutputUtils.cpp in Sources */, + 01C2B0350E3A04F9003F4586 /* QEScanner.cpp in Sources */, + 01C2B0360E3A04F9003F4586 /* TagTree.cpp in Sources */, + 01C2B0420E3A0591003F4586 /* LargeFileAccess.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2AFEB0E3A0364003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2AFF40E3A0398003F4586 /* main.cpp in Sources */, + 01C2B0380E3A04F9003F4586 /* DumpFile.cpp in Sources */, + 01C2B03A0E3A04F9003F4586 /* Log.cpp in Sources */, + 01C2B03C0E3A04F9003F4586 /* OutputUtils.cpp in Sources */, + 01C2B03D0E3A04F9003F4586 /* QEScanner.cpp in Sources */, + 01C2B03E0E3A04F9003F4586 /* TagTree.cpp in Sources */, + 01C2B0410E3A0591003F4586 /* LargeFileAccess.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0540E3A069A003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B0790E3A076E003F4586 /* ReadingXMP.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B05C0E3A069A003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B0780E3A076E003F4586 /* ReadingXMP.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0640E3A06C4003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B0970E3A07F6003F4586 /* ModifyingXMP.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B06C0E3A06C4003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B0960E3A07F5003F4586 /* ModifyingXMP.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0870E3A07A7003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B09A0E3A0805003F4586 /* XmpIterations.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B08F0E3A07A7003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B0B20E3A08A3003F4586 /* XmpIterations.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0A30E3A084F003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B0B90E3A08B3003F4586 /* Actions.cpp in Sources */, + 01C2B0BA0E3A08B3003F4586 /* main.cpp in Sources */, + 01C2B0BB0E3A08B3003F4586 /* PrintUsage.cpp in Sources */, + 01C2B0C10E3A08DC003F4586 /* Log.cpp in Sources */, + 01C2B0C20E3A08E8003F4586 /* LargeFileAccess.cpp in Sources */, + 01C2B0CB0E3A0947003F4586 /* OutputUtils.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01C2B0AB0E3A084F003F4586 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01C2B0BC0E3A08B3003F4586 /* Actions.cpp in Sources */, + 01C2B0BD0E3A08B3003F4586 /* main.cpp in Sources */, + 01C2B0BE0E3A08B3003F4586 /* PrintUsage.cpp in Sources */, + 01C2B0C00E3A08DB003F4586 /* Log.cpp in Sources */, + 01C2B0C30E3A08E9003F4586 /* LargeFileAccess.cpp in Sources */, + 01C2B0CC0E3A0948003F4586 /* OutputUtils.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC9728FE09A3E964005A68DF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC97291109A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */, + DC97291409A3E9BF005A68DF /* XMPScanner.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC97290609A3E969005A68DF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC97291209A3E9B7005A68DF /* DumpScannedXMP.cpp in Sources */, + DC97291509A3E9BF005A68DF /* XMPScanner.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCE615420951C75C001247EE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DCE615430951C75C001247EE /* XMPCoreCoverage.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCED0E5C089E7E6E009B80AF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DCED0E5D089E7E6E009B80AF /* XMPCoreCoverage.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 018882220B7C941400EECA52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0188820A0B7C93AF00EECA52 /* DumpMainXMP Release */; + targetProxy = 018882210B7C941400EECA52 /* PBXContainerItemProxy */; + }; + 018882240B7C941400EECA52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 018882010B7C93AB00EECA52 /* DumpMainXMP Debug */; + targetProxy = 018882230B7C941400EECA52 /* PBXContainerItemProxy */; + }; + 018882260B7C941400EECA52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 018881F70B7C936A00EECA52 /* XMPFilesCoverage Release */; + targetProxy = 018882250B7C941400EECA52 /* PBXContainerItemProxy */; + }; + 018882280B7C941400EECA52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 018881EF0B7C935100EECA52 /* XMPFilesCoverage Debug */; + targetProxy = 018882270B7C941400EECA52 /* PBXContainerItemProxy */; + }; + 01C2B04C0E3A0681003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2AFD20E3A01F9003F4586 /* CustomSchema Release */; + targetProxy = 01C2B04B0E3A0681003F4586 /* PBXContainerItemProxy */; + }; + 01C2B04E0E3A0681003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2AFCA0E3A01F6003F4586 /* CustomSchema Debug */; + targetProxy = 01C2B04D0E3A0681003F4586 /* PBXContainerItemProxy */; + }; + 01C2B0500E3A0684003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2AFEA0E3A0364003F4586 /* Dumpfile Release */; + targetProxy = 01C2B04F0E3A0684003F4586 /* PBXContainerItemProxy */; + }; + 01C2B0520E3A0684003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2AFE20E3A035E003F4586 /* Dumpfile Debug */; + targetProxy = 01C2B0510E3A0684003F4586 /* PBXContainerItemProxy */; + }; + 01C2B07B0E3A0776003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B06B0E3A06C4003F4586 /* ModifyingXMP Release */; + targetProxy = 01C2B07A0E3A0776003F4586 /* PBXContainerItemProxy */; + }; + 01C2B07D0E3A0776003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B0630E3A06C4003F4586 /* ModifyingXMP Debug */; + targetProxy = 01C2B07C0E3A0776003F4586 /* PBXContainerItemProxy */; + }; + 01C2B07F0E3A0776003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B05B0E3A069A003F4586 /* ReadingXMP Release */; + targetProxy = 01C2B07E0E3A0776003F4586 /* PBXContainerItemProxy */; + }; + 01C2B0810E3A0776003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B0530E3A069A003F4586 /* ReadingXMP Debug */; + targetProxy = 01C2B0800E3A0776003F4586 /* PBXContainerItemProxy */; + }; + 01C2B09C0E3A081C003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B08E0E3A07A7003F4586 /* XMPIterations Release */; + targetProxy = 01C2B09B0E3A081C003F4586 /* PBXContainerItemProxy */; + }; + 01C2B09E0E3A081C003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B0860E3A07A7003F4586 /* XMPIterations Debug */; + targetProxy = 01C2B09D0E3A081C003F4586 /* PBXContainerItemProxy */; + }; + 01C2B0D10E3A0984003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B0AA0E3A084F003F4586 /* XMPCommand Release */; + targetProxy = 01C2B0D00E3A0984003F4586 /* PBXContainerItemProxy */; + }; + 01C2B0D30E3A0984003F4586 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01C2B0A20E3A084F003F4586 /* XMPCommand Debug */; + targetProxy = 01C2B0D20E3A0984003F4586 /* PBXContainerItemProxy */; + }; + DC97291809A3EAD0005A68DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DCED0E5B089E7E6E009B80AF /* XMPCoreCoverage Debug */; + targetProxy = DC97291709A3EAD0005A68DF /* PBXContainerItemProxy */; + }; + DC97291E09A3EB06005A68DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DCE615410951C75C001247EE /* XMPCoreCoverage Release */; + targetProxy = DC97291D09A3EB06005A68DF /* PBXContainerItemProxy */; + }; + DC97292009A3EB0C005A68DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC9728FD09A3E964005A68DF /* DumpScannedXMP Debug */; + targetProxy = DC97291F09A3EB0C005A68DF /* PBXContainerItemProxy */; + }; + DC97292209A3EB12005A68DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DC97290509A3E969005A68DF /* DumpScannedXMP Release */; + targetProxy = DC97292109A3EB12005A68DF /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 018881F40B7C935100EECA52 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = XMPFilesCoverage; + }; + name = Default; + }; + 018881FC0B7C936A00EECA52 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = XMPFilesCoverage; + }; + name = Default; + }; + 018882070B7C93AB00EECA52 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = DumpMainXMP; + }; + name = Default; + }; + 018882100B7C93AF00EECA52 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = DumpMainXMP; + }; + name = Default; + }; + 01C2AFCF0E3A01F6003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = CustomSchema; + }; + name = Default; + }; + 01C2AFD70E3A01F9003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = CustomSchema; + }; + name = Default; + }; + 01C2AFE70E3A035E003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = dumpfile; + }; + name = Default; + }; + 01C2AFEF0E3A0364003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = dumpfile; + }; + name = Default; + }; + 01C2B0580E3A069A003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = ReadingXMP; + }; + name = Default; + }; + 01C2B0600E3A069A003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = ReadingXMP; + }; + name = Default; + }; + 01C2B0680E3A06C4003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = ModifyingXMP; + }; + name = Default; + }; + 01C2B0700E3A06C4003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = ModifyingXMP; + }; + name = Default; + }; + 01C2B08B0E3A07A7003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = XMPIterations; + }; + name = Default; + }; + 01C2B0930E3A07A7003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = XMPIterations; + }; + name = Default; + }; + 01C2B0A70E3A084F003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = xmpcommand; + }; + name = Default; + }; + 01C2B0AF0E3A084F003F4586 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + OTHER_LDFLAGS = ( + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPCore${LIB_SUFFIX}.a", + "${XMP_ROOT}/libraries/macintosh/${BUILD_MODE}/libXMPFiles${LIB_SUFFIX}.a", + "-framework", + Carbon, + "-framework", + QuickTime, + ); + PRODUCT_NAME = xmpcommand; + }; + name = Default; + }; + DC47BE980871F34F0088D201 /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B00951CF710040D71F /* XMPSamples-Common.xcconfig */; + buildSettings = { + }; + name = Default; + }; + DC97290209A3E964005A68DF /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + PRODUCT_NAME = DumpScannedXMP; + }; + name = Default; + }; + DC97290A09A3E969005A68DF /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + PRODUCT_NAME = DumpScannedXMP; + }; + name = Default; + }; + DC97292809A3EB4F005A68DF /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Build All"; + }; + name = Default; + }; + DCE615460951C75C001247EE /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B20951CF710040D71F /* XMPSamples-Release.xcconfig */; + buildSettings = { + PRODUCT_NAME = XMPCoreCoverage; + }; + name = Default; + }; + DCED0E63089E7E6E009B80AF /* Default */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCE400B10951CF710040D71F /* XMPSamples-Debug.xcconfig */; + buildSettings = { + PRODUCT_NAME = XMPCoreCoverage; + }; + name = Default; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 018881F30B7C935100EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 018881F40B7C935100EECA52 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 018881FB0B7C936A00EECA52 /* Build configuration list for PBXNativeTarget "XMPFilesCoverage Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 018881FC0B7C936A00EECA52 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 018882060B7C93AB00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 018882070B7C93AB00EECA52 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 0188820F0B7C93AF00EECA52 /* Build configuration list for PBXNativeTarget "DumpMainXMP Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 018882100B7C93AF00EECA52 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2AFCE0E3A01F6003F4586 /* Build configuration list for PBXNativeTarget "CustomSchema Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2AFCF0E3A01F6003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2AFD60E3A01F9003F4586 /* Build configuration list for PBXNativeTarget "CustomSchema Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2AFD70E3A01F9003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2AFE60E3A035E003F4586 /* Build configuration list for PBXNativeTarget "Dumpfile Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2AFE70E3A035E003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2AFEE0E3A0364003F4586 /* Build configuration list for PBXNativeTarget "Dumpfile Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2AFEF0E3A0364003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B0570E3A069A003F4586 /* Build configuration list for PBXNativeTarget "ReadingXMP Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B0580E3A069A003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B05F0E3A069A003F4586 /* Build configuration list for PBXNativeTarget "ReadingXMP Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B0600E3A069A003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B0670E3A06C4003F4586 /* Build configuration list for PBXNativeTarget "ModifyingXMP Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B0680E3A06C4003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B06F0E3A06C4003F4586 /* Build configuration list for PBXNativeTarget "ModifyingXMP Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B0700E3A06C4003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B08A0E3A07A7003F4586 /* Build configuration list for PBXNativeTarget "XMPIterations Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B08B0E3A07A7003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B0920E3A07A7003F4586 /* Build configuration list for PBXNativeTarget "XMPIterations Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B0930E3A07A7003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B0A60E3A084F003F4586 /* Build configuration list for PBXNativeTarget "XMPCommand Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B0A70E3A084F003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 01C2B0AE0E3A084F003F4586 /* Build configuration list for PBXNativeTarget "XMPCommand Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01C2B0AF0E3A084F003F4586 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + DC47BE960871F34F0088D201 /* Build configuration list for PBXProject "XMPSamples" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC47BE980871F34F0088D201 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + DC97290109A3E964005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC97290209A3E964005A68DF /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + DC97290909A3E969005A68DF /* Build configuration list for PBXNativeTarget "DumpScannedXMP Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC97290A09A3E969005A68DF /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + DC97292709A3EB4F005A68DF /* Build configuration list for PBXAggregateTarget "Build All" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC97292809A3EB4F005A68DF /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + DCE615450951C75C001247EE /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Release" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DCE615460951C75C001247EE /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + DCED0E60089E7E6E009B80AF /* Build configuration list for PBXNativeTarget "XMPCoreCoverage Debug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DCED0E63089E7E6E009B80AF /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; +/* End XCConfigurationList section */ + }; + rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; +} -- cgit v1.2.3