diff --git a/scripts/premake4.lua b/scripts/premake4.lua index d52503198d893c83966453853c6fc21684550d1c..977fb92a17ea9c46cfb8ebdef1c129ab87621c2e 100644 --- a/scripts/premake4.lua +++ b/scripts/premake4.lua @@ -1,6 +1,7 @@ -- Reset RNG seed to get consistent results across runs (i.e. XCode) math.randomseed(12345) +local static = _ARGS[1] == 'static' local action = premake.action.current() if string.startswith(_ACTION, "vs") then @@ -17,7 +18,7 @@ if string.startswith(_ACTION, "vs") then -- Rename output file function action.onproject(prj) - premake.generate(prj, "%%_" .. _ACTION .. ".vcproj", premake.vs200x_vcproj) + premake.generate(prj, "%%_" .. _ACTION .. (static and "_static" or "") .. ".vcproj", premake.vs200x_vcproj) end end elseif _ACTION == "codeblocks" then @@ -46,11 +47,14 @@ if string.startswith(_ACTION, "vs") then configuration "x64" targetdir(_ACTION .. "/x64") end - configurations { "Debug", "Release", "DebugStatic", "ReleaseStatic" } + configurations { "Debug", "Release" } - configuration "DebugStatic" targetsuffix "_sd" - configuration "ReleaseStatic" targetsuffix "_s" - configuration "Debug" targetsuffix "_d" + if static then + configuration "Debug" targetsuffix "_sd" + configuration "Release" targetsuffix "_s" + else + configuration "Debug" targetsuffix "_d" + end else if _ACTION == "xcode3" then platforms "universal" @@ -68,13 +72,15 @@ project "pugixml" flags { "NoPCH", "NoMinimalRebuild" } uuid "89A1E353-E2DC-495C-B403-742BE206ACED" -configuration "Debug*" +configuration "Debug" defines { "_DEBUG" } flags { "Symbols" } -configuration "Release*" +configuration "Release" defines { "NDEBUG" } flags { "Optimize" } -configuration "*Static" - flags { "StaticRuntime" } +if static then + configuration "*" + flags { "StaticRuntime" } +end diff --git a/scripts/pugixml_vs2005.vcproj b/scripts/pugixml_vs2005.vcproj index 2913d19d1bc18a59b8251cc2c9637506988e3e0c..d5eecfdf5349500b1d5a06b15fa81060866e9465 100644 --- a/scripts/pugixml_vs2005.vcproj +++ b/scripts/pugixml_vs2005.vcproj @@ -316,304 +316,6 @@ Name="VCPostBuildEventTool" /> </Configuration> - <Configuration - Name="DebugStatic|Win32" - OutputDirectory="vs2005\x32" - IntermediateDirectory="vs2005\x32\DebugStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="_DEBUG" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - Detect64BitPortabilityProblems="true" - ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_sd.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="DebugStatic|x64" - OutputDirectory="vs2005\x64" - IntermediateDirectory="vs2005\x64\DebugStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - TargetEnvironment="3" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="_DEBUG" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - Detect64BitPortabilityProblems="true" - ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_sd.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="ReleaseStatic|Win32" - OutputDirectory="vs2005\x32" - IntermediateDirectory="vs2005\x32\ReleaseStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="3" - PreprocessorDefinitions="NDEBUG" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - Detect64BitPortabilityProblems="true" - ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_s.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="ReleaseStatic|x64" - OutputDirectory="vs2005\x64" - IntermediateDirectory="vs2005\x64\ReleaseStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - TargetEnvironment="3" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="3" - PreprocessorDefinitions="NDEBUG" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - Detect64BitPortabilityProblems="true" - ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_s.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> </Configurations> <References> </References> diff --git a/scripts/pugixml_vs2002.vcproj b/scripts/pugixml_vs2005_static.vcproj similarity index 57% rename from scripts/pugixml_vs2002.vcproj rename to scripts/pugixml_vs2005_static.vcproj index ba3881dcc0e048ccc39317330c4254bef5a64a99..05c5604b1aa9c669cbf963d95b6dfd731c6110c0 100644 --- a/scripts/pugixml_vs2002.vcproj +++ b/scripts/pugixml_vs2005_static.vcproj @@ -1,220 +1,320 @@ <?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" - Version="7.00" + Version="8.00" Name="pugixml" ProjectGUID="{89A1E353-E2DC-495C-B403-742BE206ACED}" + RootNamespace="pugixml" Keyword="Win32Proj" > <Platforms> <Platform Name="Win32" /> + <Platform + Name="x64" + /> </Platforms> + <ToolFiles> + </ToolFiles> <Configurations> <Configuration Name="Debug|Win32" - OutputDirectory="vs2002" - IntermediateDirectory="vs2002\Debug" + OutputDirectory="vs2005\x32" + IntermediateDirectory="vs2005\x32\Debug" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> <Tool Name="VCCLCompilerTool" Optimization="0" PreprocessorDefinitions="_DEBUG" BasicRuntimeChecks="3" - RuntimeLibrary="3" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + RuntimeLibrary="1" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" - ProgramDataBaseFileName="$(OutDir)\pugixml_d.pdb" + Detect64BitPortabilityProblems="true" + ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + /> + <Tool + Name="VCPreLinkEventTool" /> <Tool Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_d.lib" + OutputFile="$(OutDir)\pugixml_sd.lib" /> <Tool - Name="VCMIDLTool" + Name="VCALinkTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCManifestTool" /> <Tool - Name="VCPreBuildEventTool" + Name="VCXDCMakeTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCBscMakeTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" + Name="VCFxCopTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCAppVerifierTool" /> <Tool Name="VCWebDeploymentTool" /> + <Tool + Name="VCPostBuildEventTool" + /> </Configuration> <Configuration - Name="Release|Win32" - OutputDirectory="vs2002" - IntermediateDirectory="vs2002\Release" + Name="Debug|x64" + OutputDirectory="vs2005\x64" + IntermediateDirectory="vs2005\x64\Debug" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + TargetEnvironment="3" + /> <Tool Name="VCCLCompilerTool" - Optimization="3" - PreprocessorDefinitions="NDEBUG" - StringPooling="TRUE" - RuntimeLibrary="2" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + Optimization="0" + PreprocessorDefinitions="_DEBUG" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" - ProgramDataBaseFileName="$(OutDir)\pugixml.pdb" + Detect64BitPortabilityProblems="true" + ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + /> + <Tool + Name="VCPreLinkEventTool" /> <Tool Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml.lib" + OutputFile="$(OutDir)\pugixml_sd.lib" /> <Tool - Name="VCMIDLTool" + Name="VCALinkTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCManifestTool" /> <Tool - Name="VCPreBuildEventTool" + Name="VCXDCMakeTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCBscMakeTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" + Name="VCFxCopTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCAppVerifierTool" /> <Tool Name="VCWebDeploymentTool" /> + <Tool + Name="VCPostBuildEventTool" + /> </Configuration> <Configuration - Name="DebugStatic|Win32" - OutputDirectory="vs2002" - IntermediateDirectory="vs2002\DebugStatic" + Name="Release|Win32" + OutputDirectory="vs2005\x32" + IntermediateDirectory="vs2005\x32\Release" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> <Tool Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="_DEBUG" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + Optimization="3" + PreprocessorDefinitions="NDEBUG" + StringPooling="true" + RuntimeLibrary="0" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" - ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" + Detect64BitPortabilityProblems="true" + ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + /> + <Tool + Name="VCPreLinkEventTool" /> <Tool Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_sd.lib" + OutputFile="$(OutDir)\pugixml_s.lib" /> <Tool - Name="VCMIDLTool" + Name="VCALinkTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCManifestTool" /> <Tool - Name="VCPreBuildEventTool" + Name="VCXDCMakeTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCBscMakeTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" + Name="VCFxCopTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCAppVerifierTool" /> <Tool Name="VCWebDeploymentTool" /> + <Tool + Name="VCPostBuildEventTool" + /> </Configuration> <Configuration - Name="ReleaseStatic|Win32" - OutputDirectory="vs2002" - IntermediateDirectory="vs2002\ReleaseStatic" + Name="Release|x64" + OutputDirectory="vs2005\x64" + IntermediateDirectory="vs2005\x64\Release" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + TargetEnvironment="3" + /> <Tool Name="VCCLCompilerTool" Optimization="3" PreprocessorDefinitions="NDEBUG" - StringPooling="TRUE" + StringPooling="true" RuntimeLibrary="0" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" + Detect64BitPortabilityProblems="true" ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + /> + <Tool + Name="VCPreLinkEventTool" /> <Tool Name="VCLibrarianTool" OutputFile="$(OutDir)\pugixml_s.lib" /> <Tool - Name="VCMIDLTool" + Name="VCALinkTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCManifestTool" /> <Tool - Name="VCPreBuildEventTool" + Name="VCXDCMakeTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCBscMakeTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" + Name="VCFxCopTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCAppVerifierTool" /> <Tool Name="VCWebDeploymentTool" /> + <Tool + Name="VCPostBuildEventTool" + /> </Configuration> </Configurations> <References> diff --git a/scripts/pugixml_vs2008.vcproj b/scripts/pugixml_vs2008.vcproj index 25f43b184e7c6e225b6c75a34b0de86cf3a93ef3..868b2a7a8a959eb9f9e3c0b2251ca4e37fa87dad 100644 --- a/scripts/pugixml_vs2008.vcproj +++ b/scripts/pugixml_vs2008.vcproj @@ -312,300 +312,6 @@ Name="VCPostBuildEventTool" /> </Configuration> - <Configuration - Name="DebugStatic|Win32" - OutputDirectory="vs2008\x32" - IntermediateDirectory="vs2008\x32\DebugStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="_DEBUG" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_sd.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="DebugStatic|x64" - OutputDirectory="vs2008\x64" - IntermediateDirectory="vs2008\x64\DebugStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - TargetEnvironment="3" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="_DEBUG" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_sd.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="ReleaseStatic|Win32" - OutputDirectory="vs2008\x32" - IntermediateDirectory="vs2008\x32\ReleaseStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="3" - PreprocessorDefinitions="NDEBUG" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_s.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="ReleaseStatic|x64" - OutputDirectory="vs2008\x64" - IntermediateDirectory="vs2008\x64\ReleaseStatic" - ConfigurationType="4" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - TargetEnvironment="3" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="3" - PreprocessorDefinitions="NDEBUG" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - WarningLevel="3" - ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_s.lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> </Configurations> <References> </References> diff --git a/scripts/pugixml_vs2003.vcproj b/scripts/pugixml_vs2008_static.vcproj similarity index 64% rename from scripts/pugixml_vs2003.vcproj rename to scripts/pugixml_vs2008_static.vcproj index 20f2cfdfa9c4ec50d0930ef69c902179c7f50282..c8881206496234acf5cf9e6919fa0a52fb8938fc 100644 --- a/scripts/pugixml_vs2003.vcproj +++ b/scripts/pugixml_vs2008_static.vcproj @@ -1,255 +1,315 @@ <?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" - Version="7.10" + Version="9.00" Name="pugixml" ProjectGUID="{89A1E353-E2DC-495C-B403-742BE206ACED}" + RootNamespace="pugixml" Keyword="Win32Proj" > <Platforms> <Platform Name="Win32" /> + <Platform + Name="x64" + /> </Platforms> + <ToolFiles> + </ToolFiles> <Configurations> <Configuration Name="Debug|Win32" - OutputDirectory="vs2003" - IntermediateDirectory="vs2003\Debug" + OutputDirectory="vs2008\x32" + IntermediateDirectory="vs2008\x32\Debug" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> <Tool Name="VCCLCompilerTool" Optimization="0" PreprocessorDefinitions="_DEBUG" BasicRuntimeChecks="3" - RuntimeLibrary="3" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + RuntimeLibrary="1" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" - ProgramDataBaseFileName="$(OutDir)\pugixml_d.pdb" + ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" /> <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_d.lib" + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" /> <Tool - Name="VCMIDLTool" + Name="VCPreLinkEventTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCLibrarianTool" + OutputFile="$(OutDir)\pugixml_sd.lib" /> <Tool - Name="VCPreBuildEventTool" + Name="VCALinkTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCManifestTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" + Name="VCXDCMakeTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCBscMakeTool" /> <Tool - Name="VCXMLDataGeneratorTool" + Name="VCFxCopTool" /> <Tool - Name="VCWebDeploymentTool" + Name="VCAppVerifierTool" /> <Tool - Name="VCManagedWrapperGeneratorTool" + Name="VCWebDeploymentTool" /> <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool" + Name="VCPostBuildEventTool" /> </Configuration> <Configuration - Name="Release|Win32" - OutputDirectory="vs2003" - IntermediateDirectory="vs2003\Release" + Name="Debug|x64" + OutputDirectory="vs2008\x64" + IntermediateDirectory="vs2008\x64\Debug" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + TargetEnvironment="3" + /> <Tool Name="VCCLCompilerTool" - Optimization="3" - PreprocessorDefinitions="NDEBUG" - StringPooling="TRUE" - RuntimeLibrary="2" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + Optimization="0" + PreprocessorDefinitions="_DEBUG" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" - ProgramDataBaseFileName="$(OutDir)\pugixml.pdb" + ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" /> <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml.lib" + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" /> <Tool - Name="VCMIDLTool" + Name="VCPreLinkEventTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCLibrarianTool" + OutputFile="$(OutDir)\pugixml_sd.lib" /> <Tool - Name="VCPreBuildEventTool" + Name="VCALinkTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCManifestTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" + Name="VCXDCMakeTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCBscMakeTool" /> <Tool - Name="VCXMLDataGeneratorTool" + Name="VCFxCopTool" /> <Tool - Name="VCWebDeploymentTool" + Name="VCAppVerifierTool" /> <Tool - Name="VCManagedWrapperGeneratorTool" + Name="VCWebDeploymentTool" /> <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool" + Name="VCPostBuildEventTool" /> </Configuration> <Configuration - Name="DebugStatic|Win32" - OutputDirectory="vs2003" - IntermediateDirectory="vs2003\DebugStatic" + Name="Release|Win32" + OutputDirectory="vs2008\x32" + IntermediateDirectory="vs2008\x32\Release" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> <Tool Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="_DEBUG" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + Optimization="3" + PreprocessorDefinitions="NDEBUG" + StringPooling="true" + RuntimeLibrary="0" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" - ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb" + ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" /> <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_sd.lib" + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" /> <Tool - Name="VCMIDLTool" + Name="VCPreLinkEventTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCLibrarianTool" + OutputFile="$(OutDir)\pugixml_s.lib" /> <Tool - Name="VCPreBuildEventTool" + Name="VCALinkTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCManifestTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" + Name="VCXDCMakeTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCBscMakeTool" /> <Tool - Name="VCXMLDataGeneratorTool" + Name="VCFxCopTool" /> <Tool - Name="VCWebDeploymentTool" + Name="VCAppVerifierTool" /> <Tool - Name="VCManagedWrapperGeneratorTool" + Name="VCWebDeploymentTool" /> <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool" + Name="VCPostBuildEventTool" /> </Configuration> <Configuration - Name="ReleaseStatic|Win32" - OutputDirectory="vs2003" - IntermediateDirectory="vs2003\ReleaseStatic" + Name="Release|x64" + OutputDirectory="vs2008\x64" + IntermediateDirectory="vs2008\x64\Release" ConfigurationType="4" CharacterSet="2" > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + TargetEnvironment="3" + /> <Tool Name="VCCLCompilerTool" Optimization="3" PreprocessorDefinitions="NDEBUG" - StringPooling="TRUE" + StringPooling="true" RuntimeLibrary="0" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" + EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="TRUE" ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb" DebugInformationFormat="3" /> <Tool - Name="VCCustomBuildTool" + Name="VCManagedResourceCompilerTool" /> <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\pugixml_s.lib" + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" /> <Tool - Name="VCMIDLTool" + Name="VCPreLinkEventTool" /> <Tool - Name="VCPostBuildEventTool" + Name="VCLibrarianTool" + OutputFile="$(OutDir)\pugixml_s.lib" /> <Tool - Name="VCPreBuildEventTool" + Name="VCALinkTool" /> <Tool - Name="VCPreLinkEventTool" + Name="VCManifestTool" /> <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" + Name="VCXDCMakeTool" /> <Tool - Name="VCWebServiceProxyGeneratorTool" + Name="VCBscMakeTool" /> <Tool - Name="VCXMLDataGeneratorTool" + Name="VCFxCopTool" /> <Tool - Name="VCWebDeploymentTool" + Name="VCAppVerifierTool" /> <Tool - Name="VCManagedWrapperGeneratorTool" + Name="VCWebDeploymentTool" /> <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool" + Name="VCPostBuildEventTool" /> </Configuration> </Configurations> diff --git a/scripts/pugixml_vs2010.vcxproj b/scripts/pugixml_vs2010.vcxproj index f3d6dcb25cbe9d44ef5614f3b058b3cea3febe0c..faa0066a4d5947794712b88df93b1f852a0e6090 100644 --- a/scripts/pugixml_vs2010.vcxproj +++ b/scripts/pugixml_vs2010.vcxproj @@ -1,14 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> - <ProjectConfiguration Include="DebugStatic|Win32"> - <Configuration>DebugStatic</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="DebugStatic|x64"> - <Configuration>DebugStatic</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> @@ -17,14 +9,6 @@ <Configuration>Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> - <ProjectConfiguration Include="ReleaseStatic|Win32"> - <Configuration>ReleaseStatic</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="ReleaseStatic|x64"> - <Configuration>ReleaseStatic</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> <Platform>Win32</Platform> @@ -41,14 +25,6 @@ <Keyword>Win32Proj</Keyword> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration"> - <ConfigurationType>StaticLibrary</ConfigurationType> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugStatic|Win32'" Label="Configuration"> - <ConfigurationType>StaticLibrary</ConfigurationType> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <CharacterSet>MultiByte</CharacterSet> @@ -57,14 +33,6 @@ <ConfigurationType>StaticLibrary</ConfigurationType> <CharacterSet>MultiByte</CharacterSet> </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration"> - <ConfigurationType>StaticLibrary</ConfigurationType> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugStatic|x64'" Label="Configuration"> - <ConfigurationType>StaticLibrary</ConfigurationType> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <CharacterSet>MultiByte</CharacterSet> @@ -76,24 +44,12 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> </ImportGroup> - <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="PropertySheets"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> - <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugStatic|Win32'" Label="PropertySheets"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> - <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="PropertySheets"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> - <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugStatic|x64'" Label="PropertySheets"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> @@ -111,20 +67,8 @@ <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\Release\</IntDir> <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\</OutDir> <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\Release\</IntDir> - <OutDir Condition="'$(Configuration)|$(Platform)'=='DebugStatic|Win32'">vs2010\x32\</OutDir> - <IntDir Condition="'$(Configuration)|$(Platform)'=='DebugStatic|Win32'">vs2010\x32\DebugStatic\</IntDir> - <OutDir Condition="'$(Configuration)|$(Platform)'=='DebugStatic|x64'">vs2010\x64\</OutDir> - <IntDir Condition="'$(Configuration)|$(Platform)'=='DebugStatic|x64'">vs2010\x64\DebugStatic\</IntDir> - <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">vs2010\x32\</OutDir> - <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">vs2010\x32\ReleaseStatic\</IntDir> - <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">vs2010\x64\</OutDir> - <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">vs2010\x64\ReleaseStatic\</IntDir> <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(ProjectName)_d</TargetName> <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(ProjectName)_d</TargetName> - <TargetName Condition="'$(Configuration)|$(Platform)'=='DebugStatic|Win32'">$(ProjectName)_sd</TargetName> - <TargetName Condition="'$(Configuration)|$(Platform)'=='DebugStatic|x64'">$(ProjectName)_sd</TargetName> - <TargetName Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">$(ProjectName)_s</TargetName> - <TargetName Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">$(ProjectName)_s</TargetName> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> @@ -204,84 +148,6 @@ </ResourceCompile> <Lib /> </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugStatic|Win32'"> - <ClCompile> - <Optimization>Disabled</Optimization> - <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> - <FunctionLevelLinking>true</FunctionLevelLinking> - <PrecompiledHeader> - </PrecompiledHeader> - <WarningLevel>Level3</WarningLevel> - <ProgramDataBaseFileName>$(OutDir)pugixml_sd.pdb</ProgramDataBaseFileName> - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - <Lib /> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugStatic|x64'"> - <Midl> - <TargetEnvironment>X64</TargetEnvironment> - </Midl> - <ClCompile> - <Optimization>Disabled</Optimization> - <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> - <FunctionLevelLinking>true</FunctionLevelLinking> - <PrecompiledHeader> - </PrecompiledHeader> - <WarningLevel>Level3</WarningLevel> - <ProgramDataBaseFileName>$(OutDir)pugixml_sd.pdb</ProgramDataBaseFileName> - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - <Lib /> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'"> - <ClCompile> - <Optimization>Full</Optimization> - <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <StringPooling>true</StringPooling> - <RuntimeLibrary>MultiThreaded</RuntimeLibrary> - <FunctionLevelLinking>true</FunctionLevelLinking> - <PrecompiledHeader> - </PrecompiledHeader> - <WarningLevel>Level3</WarningLevel> - <ProgramDataBaseFileName>$(OutDir)pugixml_s.pdb</ProgramDataBaseFileName> - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - <Lib /> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'"> - <Midl> - <TargetEnvironment>X64</TargetEnvironment> - </Midl> - <ClCompile> - <Optimization>Full</Optimization> - <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <StringPooling>true</StringPooling> - <RuntimeLibrary>MultiThreaded</RuntimeLibrary> - <FunctionLevelLinking>true</FunctionLevelLinking> - <PrecompiledHeader> - </PrecompiledHeader> - <WarningLevel>Level3</WarningLevel> - <ProgramDataBaseFileName>$(OutDir)pugixml_s.pdb</ProgramDataBaseFileName> - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - <Lib /> - </ItemDefinitionGroup> <ItemGroup> <ClInclude Include="..\src\pugixml.hpp" /> <ClInclude Include="..\src\pugiconfig.hpp" /> @@ -293,4 +159,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project> +</Project> \ No newline at end of file diff --git a/scripts/pugixml_vs2010_static.vcxproj b/scripts/pugixml_vs2010_static.vcxproj new file mode 100644 index 0000000000000000000000000000000000000000..2659ef2d4a5a3a4a24c6ddfdae1b984d87bd4fcb --- /dev/null +++ b/scripts/pugixml_vs2010_static.vcxproj @@ -0,0 +1,164 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Debug|Win32"> + <Configuration>Debug</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|x64"> + <Configuration>Debug</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|Win32"> + <Configuration>Release</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|x64"> + <Configuration>Release</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + </ItemGroup> + <PropertyGroup Label="Globals"> + <ProjectName>pugixml</ProjectName> + <ProjectGuid>{89A1E353-E2DC-495C-B403-742BE206ACED}</ProjectGuid> + <RootNamespace>pugixml</RootNamespace> + <Keyword>Win32Proj</Keyword> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> + <ConfigurationType>StaticLibrary</ConfigurationType> + <CharacterSet>MultiByte</CharacterSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> + <ConfigurationType>StaticLibrary</ConfigurationType> + <CharacterSet>MultiByte</CharacterSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> + <ConfigurationType>StaticLibrary</ConfigurationType> + <CharacterSet>MultiByte</CharacterSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> + <ConfigurationType>StaticLibrary</ConfigurationType> + <CharacterSet>MultiByte</CharacterSet> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> + <ImportGroup Label="ExtensionSettings"> + </ImportGroup> + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + </ImportGroup> + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + </ImportGroup> + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + </ImportGroup> + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + </ImportGroup> + <PropertyGroup Label="UserMacros" /> + <PropertyGroup> + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> + <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\</OutDir> + <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\Debug\</IntDir> + <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\</OutDir> + <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\Debug\</IntDir> + <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\</OutDir> + <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\Release\</IntDir> + <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\</OutDir> + <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\Release\</IntDir> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(ProjectName)_sd</TargetName> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(ProjectName)_sd</TargetName> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(ProjectName)_s</TargetName> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(ProjectName)_s</TargetName> + </PropertyGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> + <ClCompile> + <Optimization>Disabled</Optimization> + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + <FunctionLevelLinking>true</FunctionLevelLinking> + <PrecompiledHeader> + </PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <ProgramDataBaseFileName>$(OutDir)pugixml_sd.pdb</ProgramDataBaseFileName> + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> + </ClCompile> + <ResourceCompile> + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + </ResourceCompile> + <Lib /> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> + <Midl> + <TargetEnvironment>X64</TargetEnvironment> + </Midl> + <ClCompile> + <Optimization>Disabled</Optimization> + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + <FunctionLevelLinking>true</FunctionLevelLinking> + <PrecompiledHeader> + </PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <ProgramDataBaseFileName>$(OutDir)pugixml_sd.pdb</ProgramDataBaseFileName> + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> + </ClCompile> + <ResourceCompile> + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + </ResourceCompile> + <Lib /> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> + <ClCompile> + <Optimization>Full</Optimization> + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <StringPooling>true</StringPooling> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + <FunctionLevelLinking>true</FunctionLevelLinking> + <PrecompiledHeader> + </PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <ProgramDataBaseFileName>$(OutDir)pugixml_s.pdb</ProgramDataBaseFileName> + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> + </ClCompile> + <ResourceCompile> + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + </ResourceCompile> + <Lib /> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> + <Midl> + <TargetEnvironment>X64</TargetEnvironment> + </Midl> + <ClCompile> + <Optimization>Full</Optimization> + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <StringPooling>true</StringPooling> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + <FunctionLevelLinking>true</FunctionLevelLinking> + <PrecompiledHeader> + </PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <ProgramDataBaseFileName>$(OutDir)pugixml_s.pdb</ProgramDataBaseFileName> + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> + </ClCompile> + <ResourceCompile> + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> + </ResourceCompile> + <Lib /> + </ItemDefinitionGroup> + <ItemGroup> + <ClInclude Include="..\src\pugixml.hpp" /> + <ClInclude Include="..\src\pugiconfig.hpp" /> + </ItemGroup> + <ItemGroup> + <ClCompile Include="..\src\pugixml.cpp" /> + <ClCompile Include="..\src\pugixpath.cpp" /> + </ItemGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> + <ImportGroup Label="ExtensionTargets"> + </ImportGroup> +</Project>