You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

json-c.vcxproj 4.9 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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>{04D8CDBE-FB3E-4362-87E6-07DC3C0083B2}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. </PropertyGroup>
  17. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  19. <ConfigurationType>StaticLibrary</ConfigurationType>
  20. <PlatformToolset>v120</PlatformToolset>
  21. <CharacterSet>MultiByte</CharacterSet>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  24. <ConfigurationType>StaticLibrary</ConfigurationType>
  25. <PlatformToolset>v120</PlatformToolset>
  26. <CharacterSet>MultiByte</CharacterSet>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  29. <ImportGroup Label="ExtensionSettings">
  30. </ImportGroup>
  31. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  32. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  33. </ImportGroup>
  34. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  35. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  36. </ImportGroup>
  37. <PropertyGroup Label="UserMacros" />
  38. <PropertyGroup>
  39. <_ProjectFileVersion>12.0.30324.0</_ProjectFileVersion>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  42. <OutDir>Debug\</OutDir>
  43. <IntDir>Debug\</IntDir>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  46. <OutDir>Release\</OutDir>
  47. <IntDir>Release\</IntDir>
  48. </PropertyGroup>
  49. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  50. <ClCompile>
  51. <Optimization>Disabled</Optimization>
  52. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  53. <MinimalRebuild>true</MinimalRebuild>
  54. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  55. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  56. <PrecompiledHeader />
  57. <WarningLevel>Level3</WarningLevel>
  58. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  59. </ClCompile>
  60. <Lib>
  61. <OutputFile>$(OutDir)json-c.lib</OutputFile>
  62. </Lib>
  63. <PreBuildEvent>
  64. <Command>copy config.h.win32 config.h
  65. copy json_config.h.win32 json_config.h
  66. </Command>
  67. </PreBuildEvent>
  68. </ItemDefinitionGroup>
  69. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  70. <ClCompile>
  71. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  72. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  73. <PrecompiledHeader />
  74. <WarningLevel>Level3</WarningLevel>
  75. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  76. </ClCompile>
  77. <Lib>
  78. <OutputFile>$(OutDir)json-c.lib</OutputFile>
  79. </Lib>
  80. <PreBuildEvent>
  81. <Command>copy config.h.win32 config.h
  82. copy json_config.h.win32 json_config.h
  83. </Command>
  84. </PreBuildEvent>
  85. </ItemDefinitionGroup>
  86. <ItemGroup>
  87. <ClCompile Include="arraylist.c" />
  88. <ClCompile Include="debug.c" />
  89. <ClCompile Include="json_object.c" />
  90. <ClCompile Include="json_tokener.c" />
  91. <ClCompile Include="json_util.c" />
  92. <ClCompile Include="linkhash.c" />
  93. <ClCompile Include="printbuf.c" />
  94. </ItemGroup>
  95. <ItemGroup>
  96. <ClInclude Include="arraylist.h" />
  97. <ClInclude Include="bits.h" />
  98. <ClInclude Include="debug.h" />
  99. <ClInclude Include="json_object.h" />
  100. <ClInclude Include="json_object_private.h" />
  101. <ClInclude Include="json_tokener.h" />
  102. <ClInclude Include="json_util.h" />
  103. <ClInclude Include="linkhash.h" />
  104. <ClInclude Include="printbuf.h" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <None Include="config.h.win32" />
  108. <None Include="Doxyfile" />
  109. <None Include="json_config.h.win32" />
  110. <None Include="README-WIN32.html" />
  111. <None Include="README.html" />
  112. </ItemGroup>
  113. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  114. <ImportGroup Label="ExtensionTargets">
  115. </ImportGroup>
  116. </Project>