您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

25 行
1.0 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <!--
  4. - Automatically build Kinc with the target application if enabled
  5. -->
  6. <Target Name="KincCompile" AfterTargets="BuildGenerateSources"
  7. Condition="'$(ConfigurationType)'!='StaticLibrary' and '$(enable_kinc)'!='no'">
  8. <ItemGroup>
  9. <KincDirs Include="$(KincSources)" />
  10. <ClCompile Include="%(KincDirs.Identity)/**/*.c" />
  11. <ClCompile Include="%(KincDirs.Identity)/**/*.cpp" />
  12. <GLSLShader Include="$(KINC_SDK_PATH)/GLSLShaders/**/*.glsl" />
  13. </ItemGroup>
  14. </Target>
  15. <!-- Steam AppId support (FIXME: should be somewhere else) -->
  16. <Target Name="AfterBuild" Condition="'$(KincUseSteamworks)'=='true' and '$(Platform)'=='x64'">
  17. <Copy SourceFiles="$(STEAM_SDK_PATH)\redistributable_bin\win64\steam_api64.dll" DestinationFolder="$(OutDir)" ContinueOnError="true" />
  18. <WriteLinesToFile File="$(OutDir)steam_appid.txt" Lines="$(KincSteamAppId)" Overwrite="True"/>
  19. </Target>
  20. </Project>