srcs.vcxproj 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  43. <OutDir>$(ProjectDir)\bin\$(Configuration)\</OutDir>
  44. <IntDir>$(ProjectDir)\obj\$(Configuration)\</IntDir>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  47. <OutDir>$(ProjectDir)\bin\$(Configuration)\</OutDir>
  48. <IntDir>$(ProjectDir)\obj\$(Configuration)\</IntDir>
  49. </PropertyGroup>
  50. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  51. <ClCompile>
  52. <WarningLevel>Level3</WarningLevel>
  53. <Optimization>Disabled</Optimization>
  54. <SDLCheck>true</SDLCheck>
  55. <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  56. </ClCompile>
  57. <Link>
  58. <GenerateDebugInformation>true</GenerateDebugInformation>
  59. </Link>
  60. </ItemDefinitionGroup>
  61. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  62. <ClCompile>
  63. <WarningLevel>Level3</WarningLevel>
  64. <Optimization>MaxSpeed</Optimization>
  65. <FunctionLevelLinking>true</FunctionLevelLinking>
  66. <IntrinsicFunctions>true</IntrinsicFunctions>
  67. <SDLCheck>true</SDLCheck>
  68. <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  69. </ClCompile>
  70. <Link>
  71. <GenerateDebugInformation>true</GenerateDebugInformation>
  72. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  73. <OptimizeReferences>true</OptimizeReferences>
  74. </Link>
  75. </ItemDefinitionGroup>
  76. <ItemGroup>
  77. <ClInclude Include="Internals\CompactJsonWriter.h" />
  78. <ClInclude Include="Internals\EscapedString.h" />
  79. <ClInclude Include="Internals\IndentedPrint.h" />
  80. <ClInclude Include="JsonArray.h" />
  81. <ClInclude Include="JsonBuffer.h" />
  82. <ClInclude Include="Internals\JsonNode.h" />
  83. <ClInclude Include="Internals\JsonWriter.h" />
  84. <ClInclude Include="JsonContainer.h" />
  85. <ClInclude Include="Internals\JsonNodeIterator.h" />
  86. <ClInclude Include="JsonObject.h" />
  87. <ClInclude Include="JsonValue.h" />
  88. <ClInclude Include="Arduino\Print.h" />
  89. <ClInclude Include="Arduino\Printable.h" />
  90. <ClInclude Include="Internals\PrettyJsonWriter.h" />
  91. <ClInclude Include="StaticJsonBuffer.h" />
  92. <ClInclude Include="Internals\StringBuilder.h" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <ClCompile Include="Internals\CompactJsonWriter.cpp" />
  96. <ClCompile Include="Internals\EscapedString.cpp" />
  97. <ClCompile Include="Internals\IndentedPrint.cpp" />
  98. <ClCompile Include="Internals\JsonNode.cpp" />
  99. <ClCompile Include="JsonArray.cpp" />
  100. <ClCompile Include="JsonBuffer.cpp" />
  101. <ClCompile Include="Internals\JsonWriter.cpp" />
  102. <ClCompile Include="JsonContainer.cpp" />
  103. <ClCompile Include="JsonObject.cpp" />
  104. <ClCompile Include="JsonValue.cpp" />
  105. <ClCompile Include="Arduino\Print.cpp" />
  106. <ClCompile Include="Internals\StringBuilder.cpp" />
  107. <ClCompile Include="Internals\PrettyJsonWriter.cpp" />
  108. </ItemGroup>
  109. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  110. <ImportGroup Label="ExtensionTargets">
  111. </ImportGroup>
  112. </Project>