JsonGenerator.vcxproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <ItemGroup>
  14. <ClInclude Include="EscapedString.h" />
  15. <ClInclude Include="IndentedPrint.h" />
  16. <ClInclude Include="JsonPrettyPrint.h" />
  17. <ClInclude Include="JsonArray.h" />
  18. <ClInclude Include="JsonArrayBase.h" />
  19. <ClInclude Include="JsonObject.h" />
  20. <ClInclude Include="JsonObjectBase.h" />
  21. <ClInclude Include="JsonPrintable.h" />
  22. <ClInclude Include="JsonValue.h" />
  23. <ClInclude Include="Print.h" />
  24. <ClInclude Include="Printable.h" />
  25. <ClInclude Include="StringBuilder.h" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ClCompile Include="EscapedString.cpp" />
  29. <ClCompile Include="IndentedPrint.cpp" />
  30. <ClCompile Include="JsonPrettyPrint.cpp" />
  31. <ClCompile Include="JsonArrayBase.cpp" />
  32. <ClCompile Include="JsonObjectBase.cpp" />
  33. <ClCompile Include="JsonPrintable.cpp" />
  34. <ClCompile Include="JsonValue.cpp" />
  35. <ClCompile Include="Print.cpp" />
  36. <ClCompile Include="StringBuilder.cpp" />
  37. </ItemGroup>
  38. <PropertyGroup Label="Globals">
  39. <ProjectGuid>{C6536D27-738D-4CEB-A2BC-E13C8897D894}</ProjectGuid>
  40. <Keyword>Win32Proj</Keyword>
  41. <RootNamespace>JsonGenerator</RootNamespace>
  42. </PropertyGroup>
  43. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  45. <ConfigurationType>StaticLibrary</ConfigurationType>
  46. <UseDebugLibraries>true</UseDebugLibraries>
  47. <PlatformToolset>v120</PlatformToolset>
  48. <CharacterSet>Unicode</CharacterSet>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  51. <ConfigurationType>StaticLibrary</ConfigurationType>
  52. <UseDebugLibraries>false</UseDebugLibraries>
  53. <PlatformToolset>v120</PlatformToolset>
  54. <WholeProgramOptimization>true</WholeProgramOptimization>
  55. <CharacterSet>Unicode</CharacterSet>
  56. </PropertyGroup>
  57. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  58. <ImportGroup Label="ExtensionSettings">
  59. </ImportGroup>
  60. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  61. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62. </ImportGroup>
  63. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  64. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65. </ImportGroup>
  66. <PropertyGroup Label="UserMacros" />
  67. <PropertyGroup />
  68. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  69. <ClCompile>
  70. <PrecompiledHeader>
  71. </PrecompiledHeader>
  72. <WarningLevel>Level3</WarningLevel>
  73. <Optimization>Disabled</Optimization>
  74. <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  75. </ClCompile>
  76. <Link>
  77. <SubSystem>Windows</SubSystem>
  78. <GenerateDebugInformation>true</GenerateDebugInformation>
  79. </Link>
  80. </ItemDefinitionGroup>
  81. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  82. <ClCompile>
  83. <WarningLevel>Level3</WarningLevel>
  84. <PrecompiledHeader>
  85. </PrecompiledHeader>
  86. <Optimization>MaxSpeed</Optimization>
  87. <FunctionLevelLinking>true</FunctionLevelLinking>
  88. <IntrinsicFunctions>true</IntrinsicFunctions>
  89. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  90. </ClCompile>
  91. <Link>
  92. <SubSystem>Windows</SubSystem>
  93. <GenerateDebugInformation>true</GenerateDebugInformation>
  94. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  95. <OptimizeReferences>true</OptimizeReferences>
  96. </Link>
  97. </ItemDefinitionGroup>
  98. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  99. <ImportGroup Label="ExtensionTargets">
  100. </ImportGroup>
  101. </Project>