16 строки
851 B
XML
16 строки
851 B
XML
<!-- Build file pre-included by all Stride projects -->
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<StrideCommonPreSettingsName>Stride</StrideCommonPreSettingsName>
|
|
<StridePlatforms Condition="'$(StridePlatforms)' == '' And '$([MSBuild]::IsOSPlatform(Windows))'">Windows</StridePlatforms>
|
|
<StridePlatforms Condition="'$(StridePlatforms)' == '' And '$([MSBuild]::IsOSPlatform(Linux))'">Linux</StridePlatforms>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(StridePlatform)' == 'Windows'">
|
|
<StrideGraphicsApis Condition="'$(StrideGraphicsApis)' == ''">Direct3D11</StrideGraphicsApis>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(StridePlatform)' == 'Linux'">
|
|
<StrideGraphicsApis Condition="'$(StrideGraphicsApis)' == ''">OpenGL</StrideGraphicsApis>
|
|
</PropertyGroup>
|
|
</Project>
|