diff options
| author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-10 13:32:40 -0700 | 
|---|---|---|
| committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-10 13:32:40 -0700 | 
| commit | f010cabb44ecb00b41e57afec8574757362fc5bb (patch) | |
| tree | 215a4f1b0c5f8bad139b39c25e328fe5b4cdc394 /scripts/pugixml_vs2015.vcxproj | |
| parent | 537aea56c637b01ba72d4dec0b370cb8a00681b0 (diff) | |
scripts: Use /Z7 for NuGet package
This avoids linker warning when building the final executable and we don't
have to package the .PDB file.
Diffstat (limited to 'scripts/pugixml_vs2015.vcxproj')
| -rw-r--r-- | scripts/pugixml_vs2015.vcxproj | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/scripts/pugixml_vs2015.vcxproj b/scripts/pugixml_vs2015.vcxproj index 0788e19..e9b48f4 100644 --- a/scripts/pugixml_vs2015.vcxproj +++ b/scripts/pugixml_vs2015.vcxproj @@ -97,6 +97,8 @@        <Optimization>Disabled</Optimization>        <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>        <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName> +      <DebugInformationFormat>OldStyle</DebugInformationFormat> +      <MinimalRebuild>false</MinimalRebuild>      </ClCompile>      <Link>        <SubSystem>Windows</SubSystem> @@ -111,6 +113,8 @@        <Optimization>Disabled</Optimization>        <PreprocessorDefinitions>_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>        <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName> +      <DebugInformationFormat>OldStyle</DebugInformationFormat> +      <MinimalRebuild>false</MinimalRebuild>      </ClCompile>      <Link>        <SubSystem>Windows</SubSystem> @@ -127,6 +131,7 @@        <IntrinsicFunctions>true</IntrinsicFunctions>        <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>        <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <Link>        <SubSystem>Windows</SubSystem> @@ -145,6 +150,7 @@        <IntrinsicFunctions>true</IntrinsicFunctions>        <PreprocessorDefinitions>NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>        <ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName> +      <DebugInformationFormat>OldStyle</DebugInformationFormat>      </ClCompile>      <Link>        <SubSystem>Windows</SubSystem> | 
