-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
30 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WisdomLinkage Condition="'$(WisdomLinkage)' == ''">static</WisdomLinkage> | ||
<WisdomForceVulkan Condition="'$(WisdomForceVulkan)' == ''">false</WisdomForceVulkan> | ||
<WisdomVulkanSDKPath Condition="'$(WisdomVulkanSDKPath)' == ''">$(VULKAN_SDK)\Include</WisdomVulkanSDKPath> | ||
<WisdomLogLevel Condition="'$(WisdomLogLevel)' == ''">warn</WisdomLogLevel> | ||
<Project> | ||
<PropertyGroup> | ||
<WisdomLinkage Condition="'$(WisdomLinkage)' == ''">static</WisdomLinkage> | ||
<WisdomForceVulkan Condition="'$(WisdomForceVulkan)' == ''">false</WisdomForceVulkan> | ||
<WisdomVulkanSDKPath Condition="'$(WisdomVulkanSDKPath)' == ''">$(VULKAN_SDK)\Include</WisdomVulkanSDKPath> | ||
<WisdomLogLevel Condition="'$(WisdomLogLevel)' == ''">warn</WisdomLogLevel> | ||
|
||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'debug'">0</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'trace'">1</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'info'">2</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'warn'">3</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'error'">4</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'critical'">5</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'debug'">0</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'trace'">1</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'info'">2</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'warn'">3</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'error'">4</WisdomLogLevelValue> | ||
<WisdomLogLevelValue Condition="'$(WisdomLogLevel)' == 'critical'">5</WisdomLogLevelValue> | ||
|
||
<WisdomVulkanEnabled Condition="Exists('$(WisdomVulkanSDKPath)') Or '$(WisdomForceVulkan)' == 'true'">true</WisdomVulkanEnabled> | ||
<WisdomVulkanEnabled Condition="!Exists('$(WisdomVulkanSDKPath)') And '$(WisdomForceVulkan)' != 'true'">false</WisdomVulkanEnabled> | ||
<LibraryPostfix Condition="'$(Configuration)' == 'Debug'">d</LibraryPostfix> | ||
<LibraryPostfix Condition="'$(Configuration)' != 'Debug'"></LibraryPostfix> | ||
<LP>$(LibraryPostfix)</LP> | ||
</PropertyGroup> | ||
|
||
<LibraryPostfix Condition="'$(Configuration)' == 'Debug'">d</LibraryPostfix> | ||
<LibraryPostfix Condition="'$(Configuration)' != 'Debug'"></LibraryPostfix> | ||
<LP>$(LibraryPostfix)</LP> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PropertyPageSchema Include="$(MSBuildThisFileDirectory)\wisdom.xml"/> | ||
<ProjectCapability Include="Wisdom" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PropertyPageSchema Include="$(MSBuildThisFileDirectory)\wisdom.xml"/> | ||
<ProjectCapability Include="Wisdom" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters