25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

56 lines
1.8 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('$(SolutionDir)\lol\build.config')" Project="$(SolutionDir)\lol\build.config" />
  7. <Import Condition="Exists('$(SolutionDir)\build.config')" Project="$(SolutionDir)\build.config" />
  8. <!--
  9. - Import defaults settings from Visual Studio
  10. -->
  11. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  12. <!--
  13. - Default settings for Debug configurations
  14. -->
  15. <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
  16. <UseDebugLibraries>true</UseDebugLibraries>
  17. </PropertyGroup>
  18. <!--
  19. - Default settings for Release configurations
  20. -->
  21. <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
  22. <UseDebugLibraries>false</UseDebugLibraries>
  23. <WholeProgramOptimization>true</WholeProgramOptimization>
  24. </PropertyGroup>
  25. <!--
  26. - Default settings for any configuration
  27. -->
  28. <PropertyGroup Label="Configuration">
  29. <CharacterSet>MultiByte</CharacterSet>
  30. <UseOfMfc>false</UseOfMfc>
  31. <ExceptionHandling>false</ExceptionHandling>
  32. <FloatingPointModel>Fast</FloatingPointModel>
  33. </PropertyGroup>
  34. <!--
  35. - Select the platform toolset depending on the platform
  36. -->
  37. <PropertyGroup Condition="'$(Platform)'=='Win32'" Label="Configuration">
  38. <PlatformToolset>v141</PlatformToolset>
  39. </PropertyGroup>
  40. <PropertyGroup Condition="'$(Platform)'=='x64'" Label="Configuration">
  41. <PlatformToolset>v141</PlatformToolset>
  42. </PropertyGroup>
  43. <!--
  44. - Import final settings from Visual Studio
  45. -->
  46. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  47. </Project>