mod_deviceswitch.vcxproj 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{6C7CA1BA-A3E5-4CB6-A363-D7330F3AE48E}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. <RootNamespace>mod_deviceswitch</RootNamespace>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  20. <ConfigurationType>DynamicLibrary</ConfigurationType>
  21. <UseDebugLibraries>true</UseDebugLibraries>
  22. <CharacterSet>MultiByte</CharacterSet>
  23. <PlatformToolset>Windows7.1SDK</PlatformToolset>
  24. </PropertyGroup>
  25. <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  26. <ConfigurationType>DynamicLibrary</ConfigurationType>
  27. <UseDebugLibraries>false</UseDebugLibraries>
  28. <CharacterSet>MultiByte</CharacterSet>
  29. <PlatformToolset>Windows7.1SDK</PlatformToolset>
  30. </PropertyGroup>
  31. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  32. <ImportGroup Label="ExtensionSettings">
  33. </ImportGroup>
  34. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  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. <Import Project="..\modmake.setting" />
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  40. <LinkIncremental>true</LinkIncremental>
  41. </PropertyGroup>
  42. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  43. <ClCompile>
  44. <PrecompiledHeader>Use</PrecompiledHeader>
  45. <WarningLevel>Level3</WarningLevel>
  46. <Optimization>Disabled</Optimization>
  47. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;MOD_DEVICESWITCH_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  48. <AdditionalIncludeDirectories>$(FrameworkHeadRoot)\Common;</AdditionalIncludeDirectories>
  49. </ClCompile>
  50. <Link>
  51. <SubSystem>Windows</SubSystem>
  52. <GenerateDebugInformation>true</GenerateDebugInformation>
  53. <AdditionalDependencies>$(FrameworkLib)\SpBase.lib;%(AdditionalDependencies)</AdditionalDependencies>
  54. </Link>
  55. </ItemDefinitionGroup>
  56. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  57. <ClCompile>
  58. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  59. <WarningLevel>Level3</WarningLevel>
  60. <PrecompiledHeader>Use</PrecompiledHeader>
  61. <Optimization>MaxSpeed</Optimization>
  62. <FunctionLevelLinking>true</FunctionLevelLinking>
  63. <IntrinsicFunctions>true</IntrinsicFunctions>
  64. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;MOD_DEVICESWITCH_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  65. <AdditionalIncludeDirectories>$(FrameworkHeadRoot)\Common;</AdditionalIncludeDirectories>
  66. </ClCompile>
  67. <Link>
  68. <SubSystem>Windows</SubSystem>
  69. <GenerateDebugInformation>true</GenerateDebugInformation>
  70. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  71. <OptimizeReferences>true</OptimizeReferences>
  72. <AdditionalDependencies>$(FrameworkLib)\SpBase.lib;%(AdditionalDependencies)</AdditionalDependencies>
  73. </Link>
  74. </ItemDefinitionGroup>
  75. <ItemGroup>
  76. <ClCompile Include="$(FrameworkHeadRoot)\Common\stdafx.cpp">
  77. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  78. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  79. </ClCompile>
  80. <ClCompile Include="mod_deviceswitch.cpp" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <ClInclude Include="$(FrameworkHeadRoot)\Common\stdafx.h" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <ResourceCompile Include="..\..\Version.rc" />
  87. </ItemGroup>
  88. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  89. <ImportGroup Label="ExtensionTargets">
  90. </ImportGroup>
  91. </Project>