No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

64 líneas
2.0 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <!--
  4. - Import settings that can be overridden by the user
  5. -->
  6. <Import Condition="Exists('$(LolDir)\build.config')"
  7. Project="$(LolDir)\build.config" />
  8. <Import Condition="Exists('$(SolutionDir)\build.config') And ('$(SolutionDir)' != '$(LolDir)')"
  9. Project="$(SolutionDir)\build.config" />
  10. <!--
  11. - Import defaults settings from Visual Studio
  12. -->
  13. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  14. <!--
  15. - Default settings for Debug configurations
  16. -->
  17. <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
  18. <UseDebugLibraries>true</UseDebugLibraries>
  19. </PropertyGroup>
  20. <!--
  21. - Default settings for Release configurations
  22. -->
  23. <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
  24. <UseDebugLibraries>false</UseDebugLibraries>
  25. <WholeProgramOptimization>true</WholeProgramOptimization>
  26. </PropertyGroup>
  27. <!--
  28. - Default settings for any configuration
  29. -->
  30. <PropertyGroup Label="Configuration">
  31. <CharacterSet>MultiByte</CharacterSet>
  32. <UseOfMfc>false</UseOfMfc>
  33. <ExceptionHandling>false</ExceptionHandling>
  34. <FloatingPointModel>Fast</FloatingPointModel>
  35. </PropertyGroup>
  36. <!--
  37. - Select the platform toolset depending on the platform
  38. -->
  39. <PropertyGroup Condition="'$(Platform)'=='Win32'" Label="Configuration">
  40. <PlatformToolset>v143</PlatformToolset>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Platform)'=='x64'" Label="Configuration">
  43. <PlatformToolset>v143</PlatformToolset>
  44. </PropertyGroup>
  45. <!--
  46. - Secret stuff for platforms under NDA
  47. -->
  48. <Import Condition="Exists('$(LolDir)\src\private\nx\msbuild\nx.config.props')"
  49. Project="$(LolDir)\src\private\nx\msbuild\nx.config.props" />
  50. <!--
  51. - Import final settings from Visual Studio
  52. -->
  53. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  54. </Project>