[pangomm] Overhaul the Visual Studio 2008 Projects



commit 0f8dfff1262ec3ccf80dd2e27bc68e3966e16ec4
Author: Chun-wei Fan <fanchunwei src gnome org>
Date:   Wed Sep 17 18:28:39 2014 +0800

    Overhaul the Visual Studio 2008 Projects
    
    Give the Visual Studio 2008 Projects an overhaul, and clean them up in the
    process by consolidating commonly-used items in property sheets, so to ease
    future maintenance.
    
        * MSVC_Net2008/pangomm-build-defines.vsprops:
        * MSVC_Net2008/pangomm-version-paths.vsprops: Add property sheets
          to group together commonly-used items so that the projects can
          refer to them, so to ease future maintenance.
        * MSVC_Net2008/pangomm/pangomm.vcproj:
        * MSVC_Net2008/gendef/gendef.vcproj: Move to MSVC_Net2008/ and
          clean up using the property sheets, and update the file paths
          accordingly.  Stop building blank.cpp, as the IDE recognize the
          .cc sources, and stop using the /vd2 option, as it is a source
          of weird crashes.
        * MSVC_Net2008/pangomm.sln:
          MSVC_Net2008/filelist.am: Update file paths accordingly.

 MSVC_Net2008/filelist.am                   |    6 +-
 MSVC_Net2008/{gendef => }/gendef.vcproj    |   31 ++--
 MSVC_Net2008/pangomm-build-defines.vsprops |   32 ++++
 MSVC_Net2008/pangomm-version-paths.vsprops |   39 ++++
 MSVC_Net2008/pangomm.sln                   |    4 +-
 MSVC_Net2008/pangomm.vcproj                |  253 ++++++++++++++++++++++++++
 MSVC_Net2008/pangomm/pangomm.vcproj        |  270 ----------------------------
 7 files changed, 341 insertions(+), 294 deletions(-)
---
diff --git a/MSVC_Net2008/filelist.am b/MSVC_Net2008/filelist.am
index 088db46..241c29d 100644
--- a/MSVC_Net2008/filelist.am
+++ b/MSVC_Net2008/filelist.am
@@ -3,8 +3,10 @@
 msvc_net2008_data =                            \
        blank.cpp                               \
        pangomm.sln                             \
-       gendef/gendef.vcproj                    \
+       pangomm-build-defines.vsprops           \
+       pangomm-version-paths.vsprops           \
+       gendef.vcproj                           \
        gendef/gendef.cc                        \
        pangomm/pangomm.rc                      \
-       pangomm/pangomm.vcproj                  \
+       pangomm.vcproj                          \
        pangomm/pangommconfig.h
diff --git a/MSVC_Net2008/gendef/gendef.vcproj b/MSVC_Net2008/gendef.vcproj
similarity index 72%
rename from MSVC_Net2008/gendef/gendef.vcproj
rename to MSVC_Net2008/gendef.vcproj
index b32adc9..331d389 100644
--- a/MSVC_Net2008/gendef/gendef.vcproj
+++ b/MSVC_Net2008/gendef.vcproj
@@ -20,10 +20,8 @@
        <Configurations>
                <Configuration
                        Name="Debug|Win32"
-                       OutputDirectory="$(PlatformName)\$(ConfigurationName)"
-                       IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
                        ConfigurationType="1"
-                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
                        CharacterSet="2"
                        >
                        <Tool
@@ -40,11 +38,11 @@
                        />
                        <Tool
                                Name="VCLinkerTool"
-                               OutputFile="$(OutDir)/gendef.exe"
+                               OutputFile="$(OutDir)\$(ProjectName).exe"
                                LinkIncremental="2"
                                GenerateManifest="true"
                                GenerateDebugInformation="true"
-                               ProgramDatabaseFile="$(OutDir)/$(TargetName).pdb"
+                               ProgramDatabaseFile="$(OutDir)\$(TargetName).pdb"
                                SubSystem="1"
                                RandomizedBaseAddress="1"
                                DataExecutionPrevention="0"
@@ -53,10 +51,8 @@
                </Configuration>
                <Configuration
                        Name="Release|Win32"
-                       OutputDirectory="$(PlatformName)\$(ConfigurationName)"
-                       IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
                        ConfigurationType="1"
-                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
                        CharacterSet="2"
                        >
                        <Tool
@@ -70,7 +66,7 @@
                        />
                        <Tool
                                Name="VCLinkerTool"
-                               OutputFile="$(OutDir)/gendef.exe"
+                               OutputFile="$(OutDir)\$(ProjectName).exe"
                                LinkIncremental="1"
                                GenerateManifest="true"
                                GenerateDebugInformation="true"
@@ -84,10 +80,8 @@
                </Configuration>
                <Configuration
                        Name="Debug|x64"
-                       OutputDirectory="$(PlatformName)\$(ConfigurationName)"
-                       IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
                        ConfigurationType="1"
-                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
                        CharacterSet="2"
                        >
                        <Tool
@@ -108,11 +102,11 @@
                        />
                        <Tool
                                Name="VCLinkerTool"
-                               OutputFile="$(OutDir)/gendef.exe"
+                               OutputFile="$(OutDir)\$(ProjectName).exe"
                                LinkIncremental="2"
                                GenerateManifest="true"
                                GenerateDebugInformation="true"
-                               ProgramDatabaseFile="$(OutDir)/$(TargetName).pdb"
+                               ProgramDatabaseFile="$(OutDir)\$(TargetName).pdb"
                                SubSystem="1"
                                RandomizedBaseAddress="1"
                                DataExecutionPrevention="0"
@@ -121,10 +115,8 @@
                </Configuration>
                <Configuration
                        Name="Release|x64"
-                       OutputDirectory="$(PlatformName)\$(ConfigurationName)"
-                       IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
                        ConfigurationType="1"
-                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
                        CharacterSet="2"
                        >
                        <Tool
@@ -142,7 +134,7 @@
                        />
                        <Tool
                                Name="VCLinkerTool"
-                               OutputFile="$(OutDir)/gendef.exe"
+                               OutputFile="$(OutDir)\$(ProjectName).exe"
                                LinkIncremental="1"
                                GenerateManifest="true"
                                GenerateDebugInformation="true"
@@ -163,8 +155,7 @@
                        Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
                        UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
                        >
-                       <File RelativePath="..\blank.cpp" />
-                       <File RelativePath=".\gendef.cc" />
+                       <File RelativePath=".\gendef\gendef.cc" />
                </Filter>
                <Filter
                        Name="Header Files"
diff --git a/MSVC_Net2008/pangomm-build-defines.vsprops b/MSVC_Net2008/pangomm-build-defines.vsprops
new file mode 100644
index 0000000..3f2fb42
--- /dev/null
+++ b/MSVC_Net2008/pangomm-build-defines.vsprops
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="pangommbuilddefinesprops"
+       OutputDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin"
+       IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\obj\$(ProjectName)\"
+       InheritedPropertySheets=".\pangomm-version-paths.vsprops"
+       >
+       <Tool
+               Name="VCCLCompilerTool"
+               
AdditionalIncludeDirectories=".\pangomm;..\pango;$(GlibEtcInstallRoot)\include\glibmm-2.4;$(GlibEtcInstallRoot)\lib\glibmm-2.4\include;$(GlibEtcInstallRoot)\include\cairomm-1.0;$(GlibEtcInstallRoot)\lib\cairomm-1.0\include;$(GlibEtcInstallRoot)\include\sigc++-2.0;$(GlibEtcInstallRoot)\lib\sigc++-2.0\include;$(GlibEtcInstallRoot)\include\pango-1.0;$(GlibEtcInstallRoot)\include\glib-2.0;$(GlibEtcInstallRoot)\lib\glib-2.0\include;$(GlibEtcInstallRoot)\include"
+               ForcedIncludeFiles="msvc_recommended_pragmas.h"
+       />
+       <Tool
+               Name="VCLinkerTool"
+               AdditionalDependencies="pangocairo-1.0.lib pango-1.0.lib gobject-2.0.lib gmodule-2.0.lib 
glib-2.0.lib"
+               AdditionalLibraryDirectories="$(GlibEtcInstallRoot)\lib"
+       />
+       <UserMacro
+               Name="CPPDepLibsRelease"
+               Value="glibmm-vc$(VSVer)0-2_4.lib cairomm-vc$(VSVer)0-1_0.lib sigc-vc$(VSVer)0-2_0.lib"
+       />
+       <UserMacro
+               Name="CPPDepLibsDebug"
+               Value="glibmm-vc$(VSVer)0-d-2_4.lib cairomm-vc$(VSVer)0-d-1_0.lib sigc-vc$(VSVer)0-d-2_0.lib"
+       />
+       <UserMacro
+               Name="PangoMMBuildDefs"
+               Value="PANGOMM_BUILD"
+       />
+</VisualStudioPropertySheet>
diff --git a/MSVC_Net2008/pangomm-version-paths.vsprops b/MSVC_Net2008/pangomm-version-paths.vsprops
new file mode 100644
index 0000000..a3563fd
--- /dev/null
+++ b/MSVC_Net2008/pangomm-version-paths.vsprops
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="pangommversionpathsprops"
+       >
+       <UserMacro
+               Name="VSVer"
+               Value="9"
+       />
+       <UserMacro
+               Name="GlibEtcInstallRoot"
+               Value="$(SolutionDir)\..\..\vs$(VSVer)\$(PlatformName)"
+       />
+       <UserMacro
+               Name="DefDir"
+               Value="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\obj\$(ProjectName)\"
+       />
+       <UserMacro
+               Name="CopyDir"
+               Value="$(GlibEtcInstallRoot)"
+       />
+       <UserMacro
+               Name="ApiMajorVersion"
+               Value="1"
+       />
+       <UserMacro
+               Name="ApiMinorVersion"
+               Value="4"
+       />
+       <UserMacro
+               Name="ReleaseDllSuffix"
+               Value="-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion)"
+       />
+       <UserMacro
+               Name="DebugDllSuffix"
+               Value="-vc$(VSVer)0-d-$(ApiMajorVersion)_$(ApiMinorVersion)"
+       />
+</VisualStudioPropertySheet>
diff --git a/MSVC_Net2008/pangomm.sln b/MSVC_Net2008/pangomm.sln
index 908b0c7..747ed9c 100644
--- a/MSVC_Net2008/pangomm.sln
+++ b/MSVC_Net2008/pangomm.sln
@@ -1,8 +1,8 @@
 Microsoft Visual Studio Solution File, Format Version 10.00
 # Visual Studio 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gendef", "gendef\gendef.vcproj", 
"{07324745-C9BE-4D65-B08A-9C88188C0C28}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gendef", "gendef.vcproj", 
"{07324745-C9BE-4D65-B08A-9C88188C0C28}"
 EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pangomm-1.4", "pangomm\pangomm.vcproj", 
"{A93D607A-5C37-4AEC-BA08-6A655F6DC834}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pangomm", "pangomm.vcproj", 
"{A93D607A-5C37-4AEC-BA08-6A655F6DC834}"
        ProjectSection(ProjectDependencies) = postProject
                {07324745-C9BE-4D65-B08A-9C88188C0C28} = {07324745-C9BE-4D65-B08A-9C88188C0C28}
        EndProjectSection
diff --git a/MSVC_Net2008/pangomm.vcproj b/MSVC_Net2008/pangomm.vcproj
new file mode 100644
index 0000000..0ba30ec
--- /dev/null
+++ b/MSVC_Net2008/pangomm.vcproj
@@ -0,0 +1,253 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="9.00"
+       Name="pangomm"
+       ProjectGUID="{A93D607A-5C37-4AEC-BA08-6A655F6DC834}"
+       RootNamespace="pangomm"
+       Keyword="Win32Proj"
+       TargetFrameworkVersion="131072"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+               <Platform
+                       Name="x64"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Debug|Win32"
+                       ConfigurationType="2"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               PreprocessorDefinitions="_DEBUG;$(PangoMMBuildDefs)"
+                               MinimalRebuild="true"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="3"
+                               RuntimeTypeInfo="true"
+                               UsePrecompiledHeader="0"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="false"
+                               DebugInformationFormat="4"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                               Description="Generate pangomm def file"
+                               CommandLine="$(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def 
$(TargetFileName) $(IntDir)\*.obj"
+                               ExcludedFromBuild="false"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="$(CPPDepLibsDebug)"
+                               OutputFile="$(OutDir)\$(ProjectName)$(DebugDllSuffix).dll"
+                               GenerateManifest="true"
+                               ModuleDefinitionFile="$(IntDir)\$(ProjectName).def"
+                               GenerateDebugInformation="true"
+                               RandomizedBaseAddress="1"
+                               DataExecutionPrevention="0"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|Win32"
+                       ConfigurationType="2"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               PreprocessorDefinitions="$(PangoMMBuildDefs)"
+                               RuntimeLibrary="2"
+                               RuntimeTypeInfo="true"
+                               UsePrecompiledHeader="0"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="false"
+                               DebugInformationFormat="3"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                               Description="Generate pangomm def file"
+                               CommandLine="$(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def 
$(TargetFileName) $(IntDir)\*.obj"
+                               ExcludedFromBuild="false"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="$(CPPDepLibsRelease)"
+                               OutputFile="$(OutDir)\$(ProjectName)$(ReleaseDllSuffix).dll"
+                               GenerateManifest="true"
+                               GenerateDebugInformation="true"
+                               OptimizeReferences="2"
+                               ModuleDefinitionFile="$(IntDir)\$(ProjectName).def"
+                               RandomizedBaseAddress="1"
+                               DataExecutionPrevention="0"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Debug|x64"
+                       ConfigurationType="2"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCMIDLTool"
+                               TargetEnvironment="3"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               PreprocessorDefinitions="_DEBUG;$(PangoMMBuildDefs)"
+                               MinimalRebuild="true"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="3"
+                               RuntimeTypeInfo="true"
+                               UsePrecompiledHeader="0"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="false"
+                               DebugInformationFormat="3"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                               Description="Generate pangomm def file"
+                               CommandLine="$(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def 
$(TargetFileName) $(IntDir)\*.obj"
+                               ExcludedFromBuild="false"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="$(CPPDepLibsDebug)"
+                               OutputFile="$(OutDir)\$(ProjectName)$(DebugDllSuffix).dll"
+                               GenerateManifest="true"
+                               ModuleDefinitionFile="$(IntDir)\$(ProjectName).def"
+                               GenerateDebugInformation="true"
+                               RandomizedBaseAddress="1"
+                               DataExecutionPrevention="0"
+                               TargetMachine="17"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|x64"
+                       ConfigurationType="2"
+                       InheritedPropertySheets=".\pangomm-build-defines.vsprops"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCMIDLTool"
+                               TargetEnvironment="3"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               PreprocessorDefinitions="$(PangoMMBuildDefs)"
+                               RuntimeLibrary="2"
+                               RuntimeTypeInfo="true"
+                               UsePrecompiledHeader="0"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="false"
+                               DebugInformationFormat="3"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                               Description="Generate pangomm def file"
+                               CommandLine="$(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def 
$(TargetFileName) $(IntDir)\*.obj"
+                               ExcludedFromBuild="false"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="$(CPPDepLibsRelease)"
+                               OutputFile="$(OutDir)\$(ProjectName)$(ReleaseDllSuffix).dll"
+                               GenerateManifest="true"
+                               ModuleDefinitionFile="$(IntDir)\$(ProjectName).def"
+                               GenerateDebugInformation="true"
+                               OptimizeReferences="2"
+                               RandomizedBaseAddress="1"
+                               DataExecutionPrevention="0"
+                               TargetMachine="17"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Source Files"
+                       Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
+                       UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+                       >
+                       <File RelativePath="..\pango\pangomm\attributes.cc" />
+                       <File RelativePath="..\pango\pangomm\attriter.cc" />
+                       <File RelativePath="..\pango\pangomm\attrlist.cc" />
+                       <File RelativePath="..\pango\pangomm\cairofontmap.cc" />
+                       <File RelativePath="..\pango\pangomm\color.cc" />
+                       <File RelativePath="..\pango\pangomm\context.cc" />
+                       <File RelativePath="..\pango\pangomm\coverage.cc" />
+                       <File RelativePath="..\pango\pangomm\font.cc" />
+                       <File RelativePath="..\pango\pangomm\fontdescription.cc" />
+                       <File RelativePath="..\pango\pangomm\fontface.cc" />
+                       <File RelativePath="..\pango\pangomm\fontfamily.cc" />
+                       <File RelativePath="..\pango\pangomm\fontmap.cc" />
+                       <File RelativePath="..\pango\pangomm\fontmetrics.cc" />
+                       <File RelativePath="..\pango\pangomm\fontset.cc" />
+                       <File RelativePath="..\pango\pangomm\glyph.cc" />
+                       <File RelativePath="..\pango\pangomm\glyphstring.cc" />
+                       <File RelativePath="..\pango\pangomm\init.cc" />
+                       <File RelativePath="..\pango\pangomm\item.cc" />
+                       <File RelativePath="..\pango\pangomm\language.cc" />
+                       <File RelativePath="..\pango\pangomm\layout.cc" />
+                       <File RelativePath="..\pango\pangomm\layoutiter.cc" />
+                       <File RelativePath="..\pango\pangomm\layoutline.cc" />
+                       <File RelativePath="..\pango\pangomm\layoutrun.cc" />
+                       <File RelativePath="..\pango\pangomm\rectangle.cc" />
+                       <File RelativePath="..\pango\pangomm\renderer.cc" />
+                       <File RelativePath="..\pango\pangomm\tabarray.cc" />
+                       <File RelativePath="..\pango\pangomm\wrap_init.cc" />
+               </Filter>
+               <Filter
+                       Name="Header Files"
+                       Filter="h;hpp;hxx;hm;inl;inc;xsd"
+                       UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+                       >
+                       <File RelativePath="..\pango\pangomm\attributes.h" />
+                       <File RelativePath="..\pango\pangomm\attriter.h" />
+                       <File RelativePath="..\pango\pangomm\attrlist.h" />
+                       <File RelativePath="..\pango\pangomm\cairofontmap.h" />
+                       <File RelativePath="..\pango\pangomm\color.h" />
+                       <File RelativePath="..\pango\pangomm\context.h" />
+                       <File RelativePath="..\pango\pangomm\coverage.h" />
+                       <File RelativePath="..\pango\pangomm\font.h" />
+                       <File RelativePath="..\pango\pangomm\fontdescription.h" />
+                       <File RelativePath="..\pango\pangomm\fontface.h" />
+                       <File RelativePath="..\pango\pangomm\fontfamily.h" />
+                       <File RelativePath="..\pango\pangomm\fontmap.h" />
+                       <File RelativePath="..\pango\pangomm\fontmetrics.h" />
+                       <File RelativePath="..\pango\pangomm\fontset.h" />
+                       <File RelativePath="..\pango\pangomm\glyph.h" />
+                       <File RelativePath="..\pango\pangomm\glyphstring.h" />
+                       <File RelativePath="..\pango\pangomm\init.h" />
+                       <File RelativePath="..\pango\pangomm\item.h" />
+                       <File RelativePath="..\pango\pangomm\language.h" />
+                       <File RelativePath="..\pango\pangomm\layout.h" />
+                       <File RelativePath="..\pango\pangomm\layoutiter.h" />
+                       <File RelativePath="..\pango\pangomm\layoutline.h" />
+                       <File RelativePath="..\pango\pangomm\layoutrun.h" />
+                       <File RelativePath="..\pango\pangomm\rectangle.h" />
+                       <File RelativePath="..\pango\pangomm\renderer.h" />
+                       <File RelativePath="..\pango\pangomm\tabarray.h" />
+                       <File RelativePath="..\pango\pangomm\types.h" />
+                       <File RelativePath="..\pango\pangomm\wrap_init.h" />
+               </Filter>
+               <Filter
+                       Name="Resource Files"
+                       Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
+                       UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+                       >
+                       <File RelativePath=".\pangomm\pangomm.rc" />
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]