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.7 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. <RootNamespace>jsonc</RootNamespace>
  16. </PropertyGroup>
  17. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  19. <ConfigurationType>StaticLibrary</ConfigurationType>
  20. <PlatformToolset>v120</PlatformToolset>
  21. <CharacterSet>MultiByte</CharacterSet>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|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)'=='Debug|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)'=='Release|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. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  39. <ClCompile>
  40. <Optimization>Disabled</Optimization>
  41. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  42. <MinimalRebuild>true</MinimalRebuild>
  43. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  44. <WarningLevel>Level3</WarningLevel>
  45. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  46. <CompileAs>CompileAsCpp</CompileAs>
  47. </ClCompile>
  48. <PreBuildEvent>
  49. <Command>copy config.h.win32 config.h
  50. copy json_config.h.win32 json_config.h
  51. </Command>
  52. </PreBuildEvent>
  53. <PreBuildEvent>
  54. <Message>copy config.h from Windows template instead of calling configure</Message>
  55. </PreBuildEvent>
  56. </ItemDefinitionGroup>
  57. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  58. <ClCompile>
  59. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  60. <WarningLevel>Level3</WarningLevel>
  61. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  62. <CompileAs>CompileAsCpp</CompileAs>
  63. </ClCompile>
  64. <PreBuildEvent>
  65. <Command>copy config.h.win32 config.h
  66. copy json_config.h.win32 json_config.h
  67. </Command>
  68. </PreBuildEvent>
  69. <PreBuildEvent>
  70. <Message>copy config.h from Windows template instead of calling configure</Message>
  71. </PreBuildEvent>
  72. </ItemDefinitionGroup>
  73. <ItemGroup>
  74. <ClCompile Include="arraylist.c" />
  75. <ClCompile Include="debug.c" />
  76. <ClCompile Include="json_object.c" />
  77. <ClCompile Include="json_tokener.c" />
  78. <ClCompile Include="json_util.c" />
  79. <ClCompile Include="linkhash.c" />
  80. <ClCompile Include="printbuf.c" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <ClInclude Include="arraylist.h" />
  84. <ClInclude Include="debug.h" />
  85. <ClInclude Include="json_inttypes.h" />
  86. <ClInclude Include="json_object.h" />
  87. <ClInclude Include="json_object_private.h" />
  88. <ClInclude Include="json_tokener.h" />
  89. <ClInclude Include="json_util.h" />
  90. <ClInclude Include="linkhash.h" />
  91. <ClInclude Include="math_compat.h" />
  92. <ClInclude Include="printbuf.h" />
  93. <ClInclude Include="random_seed.h" />
  94. </ItemGroup>
  95. <ItemGroup>
  96. <None Include="config.h.win32" />
  97. <None Include="Doxyfile" />
  98. <None Include="json_config.h.win32" />
  99. <None Include="README-WIN32.html" />
  100. <None Include="README.html" />
  101. </ItemGroup>
  102. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  103. <ImportGroup Label="ExtensionTargets">
  104. </ImportGroup>
  105. </Project>