pbc.vcxproj 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.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="pbc.h" />
  15. <ClInclude Include="src\alloc.h" />
  16. <ClInclude Include="src\array.h" />
  17. <ClInclude Include="src\bootstrap.h" />
  18. <ClInclude Include="src\context.h" />
  19. <ClInclude Include="src\descriptor.pbc.h" />
  20. <ClInclude Include="src\map.h" />
  21. <ClInclude Include="src\pattern.h" />
  22. <ClInclude Include="src\proto.h" />
  23. <ClInclude Include="src\stringpool.h" />
  24. <ClInclude Include="src\varint.h" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ClCompile Include="src\alloc.c" />
  28. <ClCompile Include="src\array.c" />
  29. <ClCompile Include="src\bootstrap.c" />
  30. <ClCompile Include="src\context.c" />
  31. <ClCompile Include="src\decode.c" />
  32. <ClCompile Include="src\map.c" />
  33. <ClCompile Include="src\pattern.c" />
  34. <ClCompile Include="src\proto.c" />
  35. <ClCompile Include="src\register.c" />
  36. <ClCompile Include="src\rmessage.c" />
  37. <ClCompile Include="src\stringpool.c" />
  38. <ClCompile Include="src\varint.c" />
  39. <ClCompile Include="src\wmessage.c" />
  40. </ItemGroup>
  41. <PropertyGroup Label="Globals">
  42. <ProjectGuid>{82356F33-956B-4931-9977-BD7994B1C761}</ProjectGuid>
  43. <Keyword>Win32Proj</Keyword>
  44. <RootNamespace>ConsoleApplication1</RootNamespace>
  45. </PropertyGroup>
  46. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  48. <ConfigurationType>StaticLibrary</ConfigurationType>
  49. <UseDebugLibraries>true</UseDebugLibraries>
  50. <PlatformToolset>v110_xp</PlatformToolset>
  51. <CharacterSet>Unicode</CharacterSet>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  54. <ConfigurationType>StaticLibrary</ConfigurationType>
  55. <UseDebugLibraries>false</UseDebugLibraries>
  56. <PlatformToolset>v110_xp</PlatformToolset>
  57. <WholeProgramOptimization>true</WholeProgramOptimization>
  58. <CharacterSet>Unicode</CharacterSet>
  59. </PropertyGroup>
  60. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  61. <ImportGroup Label="ExtensionSettings">
  62. </ImportGroup>
  63. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  64. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65. </ImportGroup>
  66. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  67. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  68. </ImportGroup>
  69. <PropertyGroup Label="UserMacros" />
  70. <PropertyGroup />
  71. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  72. <ClCompile>
  73. <WarningLevel>Level3</WarningLevel>
  74. <Optimization>Disabled</Optimization>
  75. <PreprocessorDefinitions>WIN32;_LIB;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  76. <AdditionalIncludeDirectories>.;.\pbc;.\pbc\src</AdditionalIncludeDirectories>
  77. <SDLCheck>true</SDLCheck>
  78. <CompileAs>CompileAsCpp</CompileAs>
  79. <DisableSpecificWarnings>4146;4273;4244;4018</DisableSpecificWarnings>
  80. </ClCompile>
  81. <Link>
  82. <SubSystem>Windows</SubSystem>
  83. <GenerateDebugInformation>true</GenerateDebugInformation>
  84. </Link>
  85. <Lib />
  86. </ItemDefinitionGroup>
  87. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  88. <ClCompile>
  89. <WarningLevel>Level3</WarningLevel>
  90. <Optimization>MaxSpeed</Optimization>
  91. <FunctionLevelLinking>true</FunctionLevelLinking>
  92. <IntrinsicFunctions>true</IntrinsicFunctions>
  93. <PreprocessorDefinitions>WIN32;_LIB;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  94. <AdditionalIncludeDirectories>.;.\pbc;.\pbc\src</AdditionalIncludeDirectories>
  95. <SDLCheck>true</SDLCheck>
  96. <CompileAs>CompileAsCpp</CompileAs>
  97. <DisableSpecificWarnings>4146;4273;4244;4018</DisableSpecificWarnings>
  98. </ClCompile>
  99. <Link>
  100. <SubSystem>Windows</SubSystem>
  101. <GenerateDebugInformation>true</GenerateDebugInformation>
  102. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  103. <OptimizeReferences>true</OptimizeReferences>
  104. </Link>
  105. <Lib />
  106. </ItemDefinitionGroup>
  107. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  108. <ImportGroup Label="ExtensionTargets">
  109. </ImportGroup>
  110. </Project>