79031da543
Spell checking / Report (Push) (push) Blocked by required conditions
Spell checking / Report (PR) (push) Blocked by required conditions
Spell checking / Check Spelling (push) Has been cancelled
Spell checking / Update PR (push) Has been cancelled
Publish Dev Docs Website / build (push) Failing after 1s
Publish Dev Docs Website / deploy (push) Has been skipped
17 lines
844 B
XML
17 lines
844 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
<!--
|
|
PowerToys global C++ post-targets. Wired in via
|
|
<ForceImportAfterCppTargets> in Cpp.Build.props so MSBuild loads this
|
|
file AFTER Microsoft.Cpp.targets for every .vcxproj.
|
|
|
|
Conditionally imports vcpkg.targets to hook ClCompile into vcpkg's
|
|
VcpkgInstallManifestDependencies target so spdlog headers are
|
|
auto-discovered on the include path and spdlog.lib is auto-linked.
|
|
vcpkg.props is imported in Cpp.Build.props (before Microsoft.Cpp.props);
|
|
vcpkg.targets needs the matching "after" hook here.
|
|
-->
|
|
<Import Project="$(VcpkgRoot)\scripts\buildsystems\msbuild\vcpkg.targets"
|
|
Condition="'$(MSBuildProjectExtension)' == '.vcxproj' and '$(VcpkgEnabled)' == 'true' and Exists('$(VcpkgRoot)\scripts\buildsystems\msbuild\vcpkg.targets')" />
|
|
</Project>
|