Skip to content

Commit dfa58ae

Browse files
committed
update for vs2022 toolset
1 parent 0be07b6 commit dfa58ae

File tree

2 files changed

+124
-0
lines changed

2 files changed

+124
-0
lines changed

simc_vs2022.sln

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simc", "vs\simc_vs2022.vcxproj", "{3347E740-6831-4441-A559-481FD127156F}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Debug-NoNetworking|x64 = Debug-NoNetworking|x64
12+
Release|x64 = Release|x64
13+
Release-NoNetworking|x64 = Release-NoNetworking|x64
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{3347E740-6831-4441-A559-481FD127156F}.Debug|x64.ActiveCfg = Debug|x64
17+
{3347E740-6831-4441-A559-481FD127156F}.Debug|x64.Build.0 = Debug|x64
18+
{3347E740-6831-4441-A559-481FD127156F}.Debug-NoNetworking|x64.ActiveCfg = Debug-NoNetworking|x64
19+
{3347E740-6831-4441-A559-481FD127156F}.Debug-NoNetworking|x64.Build.0 = Debug-NoNetworking|x64
20+
{3347E740-6831-4441-A559-481FD127156F}.Release|x64.ActiveCfg = Release|x64
21+
{3347E740-6831-4441-A559-481FD127156F}.Release|x64.Build.0 = Release|x64
22+
{3347E740-6831-4441-A559-481FD127156F}.Release-NoNetworking|x64.ActiveCfg = Release-NoNetworking|x64
23+
{3347E740-6831-4441-A559-481FD127156F}.Release-NoNetworking|x64.Build.0 = Release-NoNetworking|x64
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {7590735D-AF0B-40E3-895D-DFA3DB12AAF3}
30+
EndGlobalSection
31+
EndGlobal

vs/simc_vs2022.vcxproj

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug-NoNetworking|x64">
5+
<Configuration>Debug-NoNetworking</Configuration>
6+
<Platform>x64</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Debug|x64">
9+
<Configuration>Debug</Configuration>
10+
<Platform>x64</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Release-NoNetworking|x64">
13+
<Configuration>Release-NoNetworking</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<VCProjectVersion>16.0</VCProjectVersion>
23+
<ProjectGuid>{3347E740-6831-4441-A559-481FD127156F}</ProjectGuid>
24+
<RootNamespace>simc</RootNamespace>
25+
<ProjectName>simc</ProjectName>
26+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
27+
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
28+
</PropertyGroup>
29+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
30+
<PropertyGroup Label="Configuration">
31+
<ConfigurationType>Application</ConfigurationType>
32+
<UseDebugLibraries>false</UseDebugLibraries>
33+
<PlatformToolset>v143</PlatformToolset>
34+
<CharacterSet>MultiByte</CharacterSet>
35+
</PropertyGroup>
36+
<PropertyGroup Condition="$(Configuration.Contains('Release'))">
37+
<WholeProgramOptimization>true</WholeProgramOptimization>
38+
</PropertyGroup>
39+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
40+
<ImportGroup Label="PropertySheets">
41+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
42+
<Import Project="OutputDirectories.props" />
43+
</ImportGroup>
44+
<ItemDefinitionGroup>
45+
<ClCompile>
46+
<WarningLevel>Level3</WarningLevel>
47+
<SDLCheck>true</SDLCheck>
48+
<ConformanceMode>true</ConformanceMode>
49+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
50+
<DisableSpecificWarnings>26495;26451;26812</DisableSpecificWarnings>
51+
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
52+
<LanguageStandard>stdcpp17</LanguageStandard>
53+
</ClCompile>
54+
<Link>
55+
<SubSystem>Console</SubSystem>
56+
</Link>
57+
</ItemDefinitionGroup>
58+
<ItemDefinitionGroup Condition="$(Configuration.Contains('Debug'))">
59+
<ClCompile>
60+
<Optimization>Disabled</Optimization>
61+
</ClCompile>
62+
</ItemDefinitionGroup>
63+
<ItemDefinitionGroup Condition="$(Configuration.Contains('Release'))">
64+
<ClCompile>
65+
<PreprocessorDefinitions>NDEBUG;_NO_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
66+
<Optimization>MaxSpeed</Optimization>
67+
<FloatingPointModel>Fast</FloatingPointModel>
68+
</ClCompile>
69+
<Link>
70+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
71+
<OptimizeReferences>true</OptimizeReferences>
72+
</Link>
73+
</ItemDefinitionGroup>
74+
<ItemDefinitionGroup Condition="$(Configuration.Contains('NoNetworking'))">
75+
<ClCompile>
76+
<PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions);SC_NO_NETWORKING</PreprocessorDefinitions>
77+
</ClCompile>
78+
</ItemDefinitionGroup>
79+
<ItemDefinitionGroup Condition="!$(Configuration.Contains('NoNetworking'))">
80+
<Link>
81+
<SubSystem>Console</SubSystem>
82+
<AdditionalDependencies>crypt32.lib;wininet.lib;%(AdditionalDependencies)</AdditionalDependencies>
83+
</Link>
84+
</ItemDefinitionGroup>
85+
<ItemGroup>
86+
</ItemGroup>
87+
<Import Project="CommonIncludeDirectories.props" />
88+
<Import Project="..\source_files\VS_engine.props" />
89+
<Import Project="..\source_files\VS_engine_main.props" />
90+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
91+
<ImportGroup Label="ExtensionTargets">
92+
</ImportGroup>
93+
</Project>

0 commit comments

Comments
 (0)