diff options
| author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-11-13 20:45:11 -0800 | 
|---|---|---|
| committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-11-13 20:45:11 -0800 | 
| commit | 6c2cd5210c0907313c54b25d1aee2bec93251771 (patch) | |
| tree | 07d689b3d824f8ebc114f2d0b99019a281f5eb4c | |
| parent | 80adb4ca5ce8ce31de8d13f38144a26f14a84b65 (diff) | |
scripts: Change VS2013 projects to use /Z7
Put debugging information into the object file so that it can be shipped
with NuGet binaries. Based on the linker settings for the executable
debug info will either be put into the final .PDB or stripped out.
Fixes #110.
| -rw-r--r-- | scripts/pugixml_vs2013.vcxproj | 8 | ||||
| -rw-r--r-- | scripts/pugixml_vs2013_static.vcxproj | 8 | 
2 files changed, 8 insertions, 8 deletions
diff --git a/scripts/pugixml_vs2013.vcxproj b/scripts/pugixml_vs2013.vcxproj index 630a75a..c719394 100644 --- a/scripts/pugixml_vs2013.vcxproj +++ b/scripts/pugixml_vs2013.vcxproj @@ -92,7 +92,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -117,7 +117,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -142,7 +142,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -169,7 +169,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> diff --git a/scripts/pugixml_vs2013_static.vcxproj b/scripts/pugixml_vs2013_static.vcxproj index b948cf6..acca608 100644 --- a/scripts/pugixml_vs2013_static.vcxproj +++ b/scripts/pugixml_vs2013_static.vcxproj @@ -92,7 +92,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -117,7 +117,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -142,7 +142,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -169,7 +169,7 @@        <PrecompiledHeader>        </PrecompiledHeader>        <WarningLevel>Level3</WarningLevel> -      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <ResourceCompile>        <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>  | 
