Only build the reference projection when there are references.

Only build the reference projection when there are references.
This commit is contained in:
Johan Laanstra 2019-10-21 12:18:22 -07:00 коммит произвёл GitHub
Родитель e4830e1aed
Коммит c8d27c1f87
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -443,7 +443,7 @@ $(XamlMetaDataProviderPch)
<!--Build reference projection from WinMD project references and dynamic library project references-->
<Target Name="CppWinRTMakeReferenceProjection"
Condition="'$(CppWinRTEnableReferenceProjection)' == 'true'"
Condition="'@(CppWinRTDirectWinMDReferences)@(CppWinRTDynamicProjectWinMDReferences)' != '' AND '$(CppWinRTEnableReferenceProjection)' == 'true'"
DependsOnTargets="GetCppWinRTProjectWinMDReferences;GetCppWinRTPlatformWinMDReferences;GetCppWinRTDirectWinMDReferences;$(CppWinRTMakeReferenceProjectionDependsOn)"
Inputs="@(CppWinRTDirectWinMDReferences);@(CppWinRTDynamicProjectWinMDReferences);@(CppWinRTPlatformWinMDReferences)"
Outputs="@(CppWinRTDirectWinMDReferences->'$(GeneratedFilesDir)winrt\%(Filename).h');@(CppWinRTDynamicProjectWinMDReferences->'$(GeneratedFilesDir)winrt\%(Filename).h')">