Skip to content

Commit 9e42fc4

Browse files
committed
Attempt to fix CI build of IDL. Scope IDL with local keyword to hopefully not generate useless proxy.
1 parent 8a48e6c commit 9e42fc4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/renderer/dx/IBoxDrawingEffect.idl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ typedef struct BoxScale
1010
} BoxScale;
1111

1212
[
13+
uuid("C164926F-1A4D-470D-BB8A-3D2CC4B035E4"),
1314
object,
14-
uuid("C164926F-1A4D-470D-BB8A-3D2CC4B035E4")
15+
local
1516
]
1617
interface IBoxDrawingEffect : IUnknown
1718
{

src/renderer/dx/lib/dx.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111
<ItemDefinitionGroup>
1212
<Midl>
13-
<OutputDirectory>..\</OutputDirectory>
13+
<OutputDirectory>$(SolutionDir)src\renderer\dx\</OutputDirectory>
1414
</Midl>
1515
</ItemDefinitionGroup>
1616
<Import Project="$(SolutionDir)src\common.build.pre.props" />
@@ -37,4 +37,4 @@
3737
</ItemGroup>
3838
<!-- Careful reordering these. Some default props (contained in these files) are order sensitive. -->
3939
<Import Project="$(SolutionDir)src\common.build.post.props" />
40-
</Project>
40+
</Project>

0 commit comments

Comments
 (0)