mce.vcxproj 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <ItemGroup Label="ProjectConfigurations">
  3. <ProjectConfiguration Include="Debug|Win32">
  4. <Configuration>Debug</Configuration>
  5. <Platform>Win32</Platform>
  6. </ProjectConfiguration>
  7. <ProjectConfiguration Include="Release|Win32">
  8. <Configuration>Release</Configuration>
  9. <Platform>Win32</Platform>
  10. </ProjectConfiguration>
  11. </ItemGroup>
  12. <PropertyGroup Label="Globals">
  13. <ProjectGuid>{662b4fea-25f4-5790-b59f-0daf49fbc412}</ProjectGuid>
  14. <Keyword>Win32Proj</Keyword>
  15. <RootNamespace>mce</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. <UseDebugLibraries>true</UseDebugLibraries>
  21. <CharacterSet>Unicode</CharacterSet>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  24. <ConfigurationType>StaticLibrary</ConfigurationType>
  25. <UseDebugLibraries>false</UseDebugLibraries>
  26. <WholeProgramOptimization>true</WholeProgramOptimization>
  27. <CharacterSet>Unicode</CharacterSet>
  28. </PropertyGroup>
  29. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  30. <ImportGroup Label="ExtensionSettings" />
  31. <ImportGroup Label="PropertySheets" />
  32. <PropertyGroup Label="UserMacros" />
  33. <PropertyGroup />
  34. <ItemDefinitionGroup>
  35. <ClCompile>
  36. <PreprocessorDefinitions>WIN32;LIBXML_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  37. <AdditionalIncludeDirectories>..\..\config;..\..;..\..\config\win32-msvc\zlib-1.2.5;..\..\third_party\zlib-1.2.5;..\..\config\win32-msvc\libxml2-2.7.7;..\..\third_party\libxml2-2.7.7\include;..\..\plib\config\msvc\plib\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  38. <CompileAs>CompileAsCpp</CompileAs>
  39. </ClCompile>
  40. </ItemDefinitionGroup>
  41. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  42. <ClCompile>
  43. <WarningLevel>Level3</WarningLevel>
  44. <Optimization>Disabled</Optimization>
  45. <DisableSpecificWarnings>4996</DisableSpecificWarnings>
  46. </ClCompile>
  47. </ItemDefinitionGroup>
  48. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  49. <ClCompile>
  50. <Optimization>MaxSpeed</Optimization>
  51. <DisableSpecificWarnings>4996</DisableSpecificWarnings>
  52. <FunctionLevelLinking>true</FunctionLevelLinking>
  53. <IntrinsicFunctions>true</IntrinsicFunctions>
  54. </ClCompile>
  55. </ItemDefinitionGroup>
  56. <ItemGroup>
  57. <ClInclude Include="..\..\config\mce\config.h"/>
  58. <ClInclude Include="..\..\mce\textreader.h"/>
  59. <ClInclude Include="..\..\mce\textwriter.h"/>
  60. <ClInclude Include="..\..\mce\helper.h"/>
  61. </ItemGroup>
  62. <ItemGroup>
  63. <ClCompile Include="..\..\mce\textreader.c">
  64. </ClCompile>
  65. <ClCompile Include="..\..\mce\textwriter.c">
  66. </ClCompile>
  67. <ClCompile Include="..\..\mce\helper.c">
  68. </ClCompile>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ProjectReference Include="../xml/xml.vcxproj">
  72. <Project>{c1949314-bf17-551a-a7a5-8c1e2b999681}</Project>
  73. </ProjectReference>
  74. <ProjectReference Include="../plib/plib.vcxproj">
  75. <Project>{9a6d5063-5bcd-597e-a440-5122933f70c4}</Project>
  76. </ProjectReference>
  77. <ProjectReference Include="../zlib/zlib.vcxproj">
  78. <Project>{e49ff4af-766a-598f-91a2-99f255aad4a8}</Project>
  79. </ProjectReference>
  80. </ItemGroup>
  81. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  82. <ImportGroup Label="ExtensionTargets" />
  83. </Project>