mirror of
https://github.com/microsoft/terminal.git
synced 2026-04-05 21:59:47 +00:00
This pull request removes the following vendored open source, in favor of getting it from vcpkg: - CLI11 2.4 - jsoncpp 1.9 - fmt 7.1.3 - gsl 3.1 (not vendored, but submoduled--arguably worse!) Now that Visual Studio 2022 includes a built-in workload for vcpkg, the onboarding process is much smoother. Terminal should only require the vcpkg workload. I've added some build rules that detect vcpkg via VS and via the user's environment before falling back to a location in the source tree. The CI pipeline will fall back to installing and bootstrapping vcpkg in dep/vcpkg if necessary. Some OSS has not been (and will not be) migrated: - wyhash: ours is included directly in til/hash - pcg_random: we have a stripped down copy compared to vcpkg - stb_rect: vcpkg only ships *all of STB*; ours is a stripped down copy - chromium numerics: vcpkg does not ship Chromium, especially not this tiny fraction of Chromium - dynamic_bitset and libpopcnt: removing in #17510 - interval_tree: no vcpkg equivalent To support the needs of the inbox Windows build, I've split up our vcpkg manifest into dependencies for all projects and dependencies just for Terminal. To support this, we now offer a `terminal` feature. The vcpkg rules in `common.build.pre.props` are set up to turn it on, whereas the build rules we eventually write for the OS will not be. Most of the work is concentrated in `common.build.pre.props`.
181 lines
8.0 KiB
XML
181 lines
8.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{A021EDFF-45C8-4DC2-BEF7-36E1B3B8CFE8}</ProjectGuid>
|
|
<ProjectName>TestHostApp</ProjectName>
|
|
<RootNamespace>TestHostApp</RootNamespace>
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
|
|
<AppContainerApplication>true</AppContainerApplication>
|
|
<WindowsStoreApp>true</WindowsStoreApp>
|
|
<ApplicationType>Windows Store</ApplicationType>
|
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
|
<OutputSubDir>Tests\Data</OutputSubDir>
|
|
<UseWmXml>true</UseWmXml>
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<OpenConsoleCppWinRTProject>true</OpenConsoleCppWinRTProject>
|
|
<EnableHybridCRT>false</EnableHybridCRT> <!-- C++/CLI projects can't deal -->
|
|
<!--
|
|
vcpkg adds *.lib to the link line, but our libraries are static libs and use the static CRT;
|
|
since this project doesn't support Hybrid CRT, it can't use the static CRT libs from vcpkg either.
|
|
-->
|
|
<VcpkgAutoLink>false</VcpkgAutoLink>
|
|
|
|
<TerminalMUX>true</TerminalMUX>
|
|
|
|
<!--
|
|
These two properties are very important!
|
|
Without them, msbuild will stomp MinVersion and MaxVersionTested in the
|
|
Package.appxmanifest and replace them with whatever our values for
|
|
TargetPlatformMinVersion and TargetPlatformVersion are.
|
|
-->
|
|
<AppxOSMinVersionReplaceManifestVersion>false</AppxOSMinVersionReplaceManifestVersion>
|
|
<AppxOSMaxVersionTestedReplaceManifestVersion>false</AppxOSMaxVersionTestedReplaceManifestVersion>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(SolutionDir)\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
|
|
|
<Import Project="$(OpenConsoleDir)\src\common.build.pre.props" />
|
|
<Import Project="$(OpenConsoleDir)\src\common.nugetversions.props" />
|
|
|
|
<!-- This project is _heavily_ cribbed directly from the TAEF samples. In
|
|
order to avoid breaking this project, it's been left largely unmodified. The
|
|
only modifications are those near the bottom of the file:
|
|
* References to our dependent winrt projects (Connection, Settings, Control,
|
|
App)
|
|
* Manual copy steps to copy the actual test code (TerminalApp.LocalTests.dll)
|
|
and the dlls that TerminalConnection is dependent upon, but don't roll up
|
|
here for whatever reason.
|
|
-->
|
|
|
|
<!-- This is important: It somehow convinces the CI to not validate that
|
|
"taef.png" is actually in the package. taef.png will get copied to the
|
|
OutputPath when taef is run, but if this isn't set to false, then the CI
|
|
will try and make sure taef.png is in the OutputPath at build time.-->
|
|
|
|
<PropertyGroup Label="UserMacros">
|
|
<GenerateAppxPackageOnBuild>false</GenerateAppxPackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<!-- Disable C++20 and two-phase name lookup for C++/CLI & C++/CX code. -->
|
|
<LanguageStandard>stdcpp17</LanguageStandard>
|
|
<AdditionalOptions>%(AdditionalOptions) /Zc:twoPhase-</AdditionalOptions>
|
|
<DisableSpecificWarnings>4453;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);$(IntermediateOutputPath)</AdditionalIncludeDirectories>
|
|
<PreprocessorDefinitions>INLINE_TEST_METHOD_MARKUP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
</ClCompile>
|
|
<Link>
|
|
<AdditionalDependencies>$(AdditionalDependencies);windowsapp.lib</AdditionalDependencies>
|
|
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup>
|
|
<ClInclude Include="pch.h" />
|
|
<ClInclude Include="UnitTestApp.xaml.h">
|
|
<DependentUpon>UnitTestApp.xaml</DependentUpon>
|
|
</ClInclude>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ApplicationDefinition Include="UnitTestApp.xaml">
|
|
<SubType>Designer</SubType>
|
|
</ApplicationDefinition>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AppxManifest Include="Package.appxmanifest">
|
|
<SubType>Designer</SubType>
|
|
</AppxManifest>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="UnitTestApp.xaml.cpp">
|
|
<DependentUpon>UnitTestApp.xaml</DependentUpon>
|
|
</ClCompile>
|
|
<ClCompile Include="pch.cpp">
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
|
</ClCompile>
|
|
</ItemGroup>
|
|
|
|
<!-- Reference all the WinRT projects that we want to role up into this test project. -->
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(OpenConsoleDir)src\cascadia\TerminalConnection\TerminalConnection.vcxproj">
|
|
<Project>{CA5CAD1A-C46D-4588-B1C0-40F31AE9100B}</Project>
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="$(OpenConsoleDir)src\cascadia\TerminalSettingsEditor\Microsoft.Terminal.Settings.Editor.vcxproj" />
|
|
<ProjectReference Include="$(OpenConsoleDir)src\cascadia\TerminalControl\dll\TerminalControl.vcxproj" />
|
|
|
|
<ProjectReference Include="$(OpenConsoleDir)src\cascadia\TerminalApp\dll\TerminalApp.vcxproj">
|
|
<Project>{ca5cad1a-44bd-4ac7-ac72-f16e576fdd12}</Project>
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="$(OpenConsoleDir)src\cascadia\TerminalSettingsModel\dll\Microsoft.Terminal.Settings.Model.vcxproj">
|
|
<Project>{CA5CAD1A-082C-4476-9F33-94B339494076}</Project>
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- Some helper paths to find our test code -->
|
|
<_TAEFPlatformName>$(Platform)</_TAEFPlatformName>
|
|
<_TAEFPlatformName Condition="'$(Platform)'=='Win32'">x86</_TAEFPlatformName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestExecutor.WinRTCore">
|
|
<HintPath>$(TAEFPackagePathRoot)\lib\Microsoft.VisualStudio.TestPlatform.TestExecutor.WinRTCore.winmd</HintPath>
|
|
<IsWinMDFile>true</IsWinMDFile>
|
|
|
|
<!-- This path is _relative to the .winmd_ -->
|
|
<Implementation>..\build\Binaries\$(_TAEFPlatformName)\TE.AppxUnitTestClient.dll</Implementation>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(OpenConsoleDir)\src\common.build.post.props" />
|
|
<Import Project="$(OpenConsoleDir)\src\common.nugetversions.targets" />
|
|
|
|
<ItemGroup>
|
|
<TestDll Include="$(OpenConsoleCommonOutDir)\LocalTests_TerminalApp\TerminalApp.LocalTests.dll" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="AfterBuild" Inputs="@(TestDll)" Outputs="@(TestDll->'$(TargetDir)'\%(Filename)%(Extension)')">
|
|
|
|
<!-- Use this to auto-find all the dll's that TerminalConnection produces. We
|
|
don't roll these up automatically, so we'll need to copy them manually
|
|
(below)
|
|
|
|
The dependencies from TerminalConnection get rolled up in the
|
|
GetPackagingOutputs step, when it produces the "appx recipe". This means
|
|
they only show up when the build produces an AppX\ folder for either running
|
|
or packaging.
|
|
|
|
It is literally impossible to produce an AppX\ folder using MSBuild without
|
|
packaging an appx, and we don't want to do that anyway, so we use these copy
|
|
rules instead.
|
|
-->
|
|
<ItemGroup>
|
|
<TerminalConnectionDlls Include="$(OpenConsoleCommonOutDir)\TerminalConnection\*.dll"/>
|
|
</ItemGroup>
|
|
|
|
<!-- Copy the AppxManifest.xml to another file, because when TAEF is
|
|
deploying the app, it'll delete the AppxManifest.xml file from this
|
|
directory when it tries to clean up after itself. -->
|
|
<Copy SourceFiles="$(TargetDir)\AppxManifest.xml" DestinationFiles="$(TargetDir)\TestHostAppXManifest.xml" />
|
|
|
|
<!-- Copy all test code -->
|
|
<Copy SourceFiles="@(TestDll)"
|
|
DestinationFolder="$(TargetDir)"
|
|
UseHardLinksIfPossible="true"
|
|
SkipUnchangedFiles="true" />
|
|
|
|
<!-- Copy some dlls which TerminalConnection is dependent upon that didn't
|
|
get rolled up into this directory -->
|
|
<Copy SourceFiles="@(TerminalConnectionDlls)"
|
|
DestinationFolder="$(TargetDir)"
|
|
UseHardLinksIfPossible="true"
|
|
SkipUnchangedFiles="true" />
|
|
|
|
</Target>
|
|
</Project>
|