Skip to content

Commit

Permalink
Common.props: set OutDir=xrLibDir for static library configuration ty…
Browse files Browse the repository at this point in the history
…pes.
  • Loading branch information
nitrocaster committed Nov 23, 2015
1 parent 78a3414 commit 66b732d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,16 @@
<xrIntDir>$(SolutionDir)..\intermediate\$(xrPlatform)\$(Configuration)\</xrIntDir>
<xrSdkDir>$(SolutionDir)..\sdk\</xrSdkDir>
</PropertyGroup>
<PropertyGroup>
<PropertyGroup Condition="'$(ConfigurationType)'=='Application'">
<OutDir>$(xrBinDir)</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(ConfigurationType)'=='DynamicLibrary'">
<OutDir>$(xrBinDir)</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(ConfigurationType)'=='StaticLibrary'">
<OutDir>$(xrLibDir)</OutDir>
</PropertyGroup>
<PropertyGroup>
<IntDir>$(xrIntDir)$(ProjectName)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup>
Expand Down

0 comments on commit 66b732d

Please sign in to comment.