Skip to content

Commit 66b732d

Browse files
author
nitrocaster
committed
Common.props: set OutDir=xrLibDir for static library configuration types.
1 parent 78a3414 commit 66b732d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/Common.props

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,16 @@
2222
<xrIntDir>$(SolutionDir)..\intermediate\$(xrPlatform)\$(Configuration)\</xrIntDir>
2323
<xrSdkDir>$(SolutionDir)..\sdk\</xrSdkDir>
2424
</PropertyGroup>
25-
<PropertyGroup>
25+
<PropertyGroup Condition="'$(ConfigurationType)'=='Application'">
26+
<OutDir>$(xrBinDir)</OutDir>
27+
</PropertyGroup>
28+
<PropertyGroup Condition="'$(ConfigurationType)'=='DynamicLibrary'">
2629
<OutDir>$(xrBinDir)</OutDir>
30+
</PropertyGroup>
31+
<PropertyGroup Condition="'$(ConfigurationType)'=='StaticLibrary'">
32+
<OutDir>$(xrLibDir)</OutDir>
33+
</PropertyGroup>
34+
<PropertyGroup>
2735
<IntDir>$(xrIntDir)$(ProjectName)\</IntDir>
2836
</PropertyGroup>
2937
<ItemDefinitionGroup>

0 commit comments

Comments
 (0)