mod_uplog.vcxproj 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>{3430E9B5-9E9E-49C5-B44C-B3E4101DFA94}</ProjectGuid>
  15. <RootNamespace>mod_uplog</RootNamespace>
  16. </PropertyGroup>
  17. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  19. <ConfigurationType>DynamicLibrary</ConfigurationType>
  20. <UseDebugLibraries>true</UseDebugLibraries>
  21. <CharacterSet>MultiByte</CharacterSet>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  24. <ConfigurationType>Application</ConfigurationType>
  25. <UseDebugLibraries>false</UseDebugLibraries>
  26. <WholeProgramOptimization>true</WholeProgramOptimization>
  27. <CharacterSet>MultiByte</CharacterSet>
  28. </PropertyGroup>
  29. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  30. <ImportGroup Label="ExtensionSettings">
  31. </ImportGroup>
  32. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  33. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  34. </ImportGroup>
  35. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. </ImportGroup>
  38. <PropertyGroup Label="UserMacros" />
  39. <Import Project="..\modmake.setting" />
  40. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  41. <OutDir>$(OUTROOT)\Run\version\$(ReleaseVersion)\mod\</OutDir>
  42. <IntDir>$(TEMPROOT)\</IntDir>
  43. </PropertyGroup>
  44. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  45. <ClCompile>
  46. <WarningLevel>Level3</WarningLevel>
  47. <Optimization>Disabled</Optimization>
  48. <AdditionalIncludeDirectories>$(FrameworkHeadRoot)\Common;$(FrameworkHeadRoot)\libtoolkit;$(ModuleCommonHeadPath);$(ThirdPartyHeadRoot)\jsoncpp</AdditionalIncludeDirectories>
  49. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;MOD_UPLOG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  50. </ClCompile>
  51. <Link>
  52. <GenerateDebugInformation>true</GenerateDebugInformation>
  53. <AdditionalDependencies>$(FrameworkLib)\SpBase.lib;$(FrameworkLib)\RVCComm.lib;$(ThirdPartyLib)\lib_json.lib</AdditionalDependencies>
  54. </Link>
  55. </ItemDefinitionGroup>
  56. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  57. <ClCompile>
  58. <WarningLevel>Level3</WarningLevel>
  59. <Optimization>MaxSpeed</Optimization>
  60. <FunctionLevelLinking>true</FunctionLevelLinking>
  61. <IntrinsicFunctions>true</IntrinsicFunctions>
  62. </ClCompile>
  63. <Link>
  64. <GenerateDebugInformation>true</GenerateDebugInformation>
  65. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  66. <OptimizeReferences>true</OptimizeReferences>
  67. </Link>
  68. </ItemDefinitionGroup>
  69. <ItemGroup>
  70. <ClInclude Include="UpLogFSM.h" />
  71. <ClInclude Include="mod_uplog.h" />
  72. <ClInclude Include="stdafx.h" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ClCompile Include="UpLogFSM.cpp" />
  76. <ClCompile Include="mod_uplog.cpp" />
  77. <ClCompile Include="stdafx.cpp" />
  78. </ItemGroup>
  79. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  80. <ImportGroup Label="ExtensionTargets">
  81. </ImportGroup>
  82. </Project>