cloud.vcxproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <ItemGroup>
  14. <ClInclude Include="CloudApi.h" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ClCompile Include="CloudApi.cpp" />
  18. </ItemGroup>
  19. <PropertyGroup Label="Globals">
  20. <ProjectGuid>{59F63666-D63C-4271-BAF8-59F06E8BCEC8}</ProjectGuid>
  21. <RootNamespace>cloud</RootNamespace>
  22. </PropertyGroup>
  23. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  25. <ConfigurationType>Application</ConfigurationType>
  26. <UseDebugLibraries>true</UseDebugLibraries>
  27. <PlatformToolset>v120</PlatformToolset>
  28. <CharacterSet>MultiByte</CharacterSet>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  31. <ConfigurationType>DynamicLibrary</ConfigurationType>
  32. <UseDebugLibraries>false</UseDebugLibraries>
  33. <PlatformToolset>v120</PlatformToolset>
  34. <WholeProgramOptimization>true</WholeProgramOptimization>
  35. <CharacterSet>MultiByte</CharacterSet>
  36. </PropertyGroup>
  37. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  38. <ImportGroup Label="ExtensionSettings">
  39. </ImportGroup>
  40. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  41. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  42. </ImportGroup>
  43. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  44. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  45. </ImportGroup>
  46. <PropertyGroup Label="UserMacros" />
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  48. <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
  49. </PropertyGroup>
  50. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  51. <ClCompile>
  52. <WarningLevel>Level3</WarningLevel>
  53. <Optimization>Disabled</Optimization>
  54. <SDLCheck>true</SDLCheck>
  55. </ClCompile>
  56. <Link>
  57. <GenerateDebugInformation>true</GenerateDebugInformation>
  58. </Link>
  59. </ItemDefinitionGroup>
  60. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  61. <ClCompile>
  62. <WarningLevel>Level3</WarningLevel>
  63. <Optimization>MaxSpeed</Optimization>
  64. <FunctionLevelLinking>true</FunctionLevelLinking>
  65. <IntrinsicFunctions>true</IntrinsicFunctions>
  66. <SDLCheck>true</SDLCheck>
  67. <PreprocessorDefinitions>CLOUDAPI_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  68. </ClCompile>
  69. <Link>
  70. <GenerateDebugInformation>true</GenerateDebugInformation>
  71. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  72. <OptimizeReferences>true</OptimizeReferences>
  73. <AdditionalDependencies>qcloud.lib;huaweisecurec.lib;libeSDKOBS.lib;%(AdditionalDependencies)</AdditionalDependencies>
  74. <AdditionalLibraryDirectories>$(SolutionDir)lib\ucloud\release;$(SolutionDir)lib\hwcloud</AdditionalLibraryDirectories>
  75. </Link>
  76. </ItemDefinitionGroup>
  77. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  78. <ImportGroup Label="ExtensionTargets">
  79. </ImportGroup>
  80. </Project>