Skip to content

Commit

Permalink
Fixed ultra slow builds
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenmc committed Jul 17, 2024
1 parent d64831e commit 899197e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 17 deletions.
12 changes: 0 additions & 12 deletions LaunchTree.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,16 @@ Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "Packaging", "src\Packaging\
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|Any CPU.ActiveCfg = Debug|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|Any CPU.Build.0 = Debug|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|ARM.ActiveCfg = Debug|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|ARM.Build.0 = Debug|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|ARM64.ActiveCfg = Debug|x64
Expand All @@ -37,8 +33,6 @@ Global
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|x64.Build.0 = Debug|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|x86.ActiveCfg = Debug|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Debug|x86.Build.0 = Debug|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|Any CPU.ActiveCfg = Release|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|Any CPU.Build.0 = Release|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|ARM.ActiveCfg = Release|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|ARM.Build.0 = Release|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|ARM64.ActiveCfg = Release|ARM64
Expand All @@ -47,9 +41,6 @@ Global
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|x64.Build.0 = Release|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|x86.ActiveCfg = Release|x64
{D35837C5-D070-41E4-9671-0884454B8B44}.Release|x86.Build.0 = Release|x64
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|ARM.ActiveCfg = Debug|ARM
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|ARM.Build.0 = Debug|ARM
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|ARM.Deploy.0 = Debug|ARM
Expand All @@ -62,9 +53,6 @@ Global
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|x86.ActiveCfg = Debug|x86
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|x86.Build.0 = Debug|x86
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Debug|x86.Deploy.0 = Debug|x86
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Release|Any CPU.Build.0 = Release|Any CPU
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Release|Any CPU.Deploy.0 = Release|Any CPU
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Release|ARM.ActiveCfg = Release|ARM
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Release|ARM.Build.0 = Release|ARM
{CFAB1A23-628C-4FB4-8A8A-CED1612271FC}.Release|ARM.Deploy.0 = Release|ARM
Expand Down
6 changes: 4 additions & 2 deletions src/LaunchTree/LaunchTree.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<LanguageStandard>stdcpplatest</LanguageStandard>
<LanguageStandard_C>stdc17</LanguageStandard_C>
<!-- https://docs.microsoft.com/en-us/cpp/build/creating-precompiled-header-files -->
<PrecompiledHeader>Create</PrecompiledHeader>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)/../../external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
Expand Down Expand Up @@ -99,7 +99,9 @@
<!-- Project Contents -->
<ItemGroup>
<None Include="packages.config" />
<None Include="pch.cpp" />
<ClCompile Include="pch.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClCompile Include="App.cpp" />
Expand Down
6 changes: 3 additions & 3 deletions src/LaunchTree/LaunchTree.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="pch.cpp">
<Filter>Source Files</Filter>
</None>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
Expand Down Expand Up @@ -63,6 +60,9 @@
<ClCompile Include="View\HostWindow.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="pch.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="pch.h">
Expand Down

0 comments on commit 899197e

Please sign in to comment.