Fix incremental build dependencies in python modules

This commit is contained in:
baldurk
2020-10-30 16:28:03 +00:00
parent 4dae8721f8
commit caa8bb5be0
2 changed files with 5 additions and 5 deletions
@@ -127,8 +127,8 @@
</ItemDefinitionGroup>
<!-- use globbing to find conservative dependency list -->
<ItemGroup>
<SwigInterfaces Include="Code\pyrenderdoc\*.i" />
<SwigHeaders Include="Code\pyrenderdoc\*.h" />
<SwigInterfaces Include="$(ProjectDir)\*.i" />
<SwigHeaders Include="$(ProjectDir)\*.h" />
<CoreReplayHeaders Include="$(SolutionDir)renderdoc\api\replay\*.h" />
</ItemGroup>
<PropertyGroup>
@@ -108,9 +108,9 @@
</ItemDefinitionGroup>
<!-- use globbing to find conservative dependency list -->
<ItemGroup>
<SwigInterfaces Include="Code\pyrenderdoc\*.i" />
<SwigHeaders Include="Code\pyrenderdoc\*.h" />
<QRDHeaders Include="Code\Interface\*.h" />
<SwigInterfaces Include="$(ProjectDir)\*.i" />
<SwigHeaders Include="$(ProjectDir)\*.h" />
<QRDHeaders Include="$(ProjectDir)\..\Interface\*.h" />
<CoreReplayHeaders Include="$(SolutionDir)renderdoc\api\replay\*.h" />
</ItemGroup>
<PropertyGroup>