srcs.vcxproj 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|Win32">
  5. <Configuration>Debug</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{8E8F5E24-3936-4375-8F0E-1A8054BCB049}</ProjectGuid>
  15. <RootNamespace>srcs</RootNamespace>
  16. <ProjectName>ArduinoJson</ProjectName>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  20. <ConfigurationType>StaticLibrary</ConfigurationType>
  21. <UseDebugLibraries>true</UseDebugLibraries>
  22. <PlatformToolset>v120</PlatformToolset>
  23. <CharacterSet>MultiByte</CharacterSet>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  26. <ConfigurationType>StaticLibrary</ConfigurationType>
  27. <UseDebugLibraries>false</UseDebugLibraries>
  28. <PlatformToolset>v120</PlatformToolset>
  29. <WholeProgramOptimization>true</WholeProgramOptimization>
  30. <CharacterSet>MultiByte</CharacterSet>
  31. </PropertyGroup>
  32. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  33. <ImportGroup Label="ExtensionSettings">
  34. </ImportGroup>
  35. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. </ImportGroup>
  38. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  39. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  40. </ImportGroup>
  41. <PropertyGroup Label="UserMacros" />
  42. <PropertyGroup />
  43. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  44. <ClCompile>
  45. <WarningLevel>Level3</WarningLevel>
  46. <Optimization>Disabled</Optimization>
  47. <SDLCheck>true</SDLCheck>
  48. <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  49. </ClCompile>
  50. <Link>
  51. <GenerateDebugInformation>true</GenerateDebugInformation>
  52. </Link>
  53. </ItemDefinitionGroup>
  54. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  55. <ClCompile>
  56. <WarningLevel>Level3</WarningLevel>
  57. <Optimization>MaxSpeed</Optimization>
  58. <FunctionLevelLinking>true</FunctionLevelLinking>
  59. <IntrinsicFunctions>true</IntrinsicFunctions>
  60. <SDLCheck>true</SDLCheck>
  61. <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  62. </ClCompile>
  63. <Link>
  64. <GenerateDebugInformation>true</GenerateDebugInformation>
  65. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  66. <OptimizeReferences>true</OptimizeReferences>
  67. </Link>
  68. </ItemDefinitionGroup>
  69. <ItemGroup>
  70. <ClInclude Include="EscapedString.h" />
  71. <ClInclude Include="JsonBuffer.h" />
  72. <ClInclude Include="JsonNode.h" />
  73. <ClInclude Include="JsonObject.h" />
  74. <ClInclude Include="JsonValue.h" />
  75. <ClInclude Include="Print.h" />
  76. <ClInclude Include="Printable.h" />
  77. <ClInclude Include="StaticJsonBuffer.h" />
  78. <ClInclude Include="StringBuilder.h" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <ClCompile Include="EscapedString.cpp" />
  82. <ClCompile Include="JsonBuffer.cpp" />
  83. <ClCompile Include="JsonObject.cpp" />
  84. <ClCompile Include="JsonValue.cpp" />
  85. <ClCompile Include="Print.cpp" />
  86. <ClCompile Include="StringBuilder.cpp" />
  87. </ItemGroup>
  88. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  89. <ImportGroup Label="ExtensionTargets">
  90. </ImportGroup>
  91. </Project>