mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
|
|
<!-- Adds to the DefineConstants to provide things such as platform-specific defines. -->
|
|
<Choose>
|
|
<When Condition="'$(TargetOS)' == 'Windows'">
|
|
<PropertyGroup>
|
|
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
|
|
</PropertyGroup>
|
|
</When>
|
|
<When Condition="'$(TargetOS)' == 'MacOS'" >
|
|
<PropertyGroup>
|
|
<DefineConstants>$(DefineConstants);MACOS;UNIX</DefineConstants>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<DefineConstants>$(DefineConstants);LINUX;UNIX</DefineConstants>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
<PropertyGroup Condition="'$(FullRelease)' == 'True'">
|
|
<DefineConstants>$(DefineConstants);FULL_RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DefineConstants>$(DefineConstants);EXCEPTION_TOLERANCE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(EnableClientScripting)' == 'True'">
|
|
<DefineConstants>$(DefineConstants);CLIENT_SCRIPTING</DefineConstants>
|
|
</PropertyGroup>
|
|
</Project>
|