mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-16 15:40:14 +00:00
[Windows, PDB, MSVC] Use $(DefaultPlatformToolset) in pdb project + minor solution refactor
This commit is contained in:
parent
63be47d026
commit
e33d593e52
@ -6,19 +6,13 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pdb", "pdb.vcxproj", "{343E
|
||||
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
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Debug|Win32.ActiveCfg = Debug|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Debug|Win32.Build.0 = Debug|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Debug|x64.Build.0 = Debug|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Release|Win32.ActiveCfg = Release|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Release|Win32.Build.0 = Release|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Release|x64.ActiveCfg = Release|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Release|x64.Build.0 = Release|x64
|
||||
{343E9778-3C04-476E-8F90-A114AA7AA108}.Release|x64.Deploy.0 = Release|x64
|
||||
|
@ -18,13 +18,13 @@
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
||||
<SpectreMitigation>false</SpectreMitigation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
||||
<SpectreMitigation>false</SpectreMitigation>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
|
Loading…
Reference in New Issue
Block a user