-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMake.Cpp.props
More file actions
14 lines (14 loc) · 949 Bytes
/
CMake.Cpp.props
File metadata and controls
14 lines (14 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!--Contains the output folder relative to the project dir-->
<RelativeBaseOutput Condition="!$([System.IO.Path]::IsPathRooted($(OutDir)))">$(OutDir)</RelativeBaseOutput>
<RelativeBaseOutput Condition="$([System.IO.Path]::IsPathRooted($(OutDir)))">$([MSBuild]::MakeRelative('$(MSBuildProjectDirectory)', '$(OutDir)'))</RelativeBaseOutput>
<RelativeOutput>$(RelativeBaseOutput)/$(Configuration)/$(ParadoxPlatform)/$(AndroidApiVersion)/$(ParadoxArch)</RelativeOutput>
<AbsoluteOutput>$(MSBuildProjectDirectory)/$(RelativeOutput)</AbsoluteOutput>
<OutDir Condition="'$(CMakeUse)'!='true'">$(AbsoluteOutput)\</OutDir>
</PropertyGroup>
<ItemGroup>
<ArchToCompile Condition="'$(ParadoxArch)'=='all'" Include="@(PlatformArch)"/>
<ArchToCompile Condition="'$(ParadoxArch)'!='all'" Include="$(ParadoxArch)"/>
</ItemGroup>
</Project>