RocketDebugger.vcxproj 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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>{1AAC0B29-AEC9-4E3F-9EDF-B56F8949C41A}</ProjectGuid>
  15. <RootNamespace>debugger</RootNamespace>
  16. <Keyword>Win32Proj</Keyword>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  20. <ConfigurationType>DynamicLibrary</ConfigurationType>
  21. <CharacterSet>Unicode</CharacterSet>
  22. <WholeProgramOptimization>true</WholeProgramOptimization>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  25. <ConfigurationType>DynamicLibrary</ConfigurationType>
  26. <CharacterSet>Unicode</CharacterSet>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  29. <ImportGroup Label="ExtensionSettings">
  30. </ImportGroup>
  31. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  32. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  33. <Import Project="vsprops\BuildConfigurationDLLRelease.props" />
  34. </ImportGroup>
  35. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. <Import Project="vsprops\BuildConfigurationDLLDebug.props" />
  38. </ImportGroup>
  39. <PropertyGroup Label="UserMacros" />
  40. <PropertyGroup>
  41. <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
  42. <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\bin\</OutDir>
  43. <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\bin\</OutDir>
  44. <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(ProjectName)_d</TargetName>
  45. </PropertyGroup>
  46. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  47. <ClCompile>
  48. <AdditionalIncludeDirectories>..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  49. <PreprocessorDefinitions>_WIN32;_DEBUG;RocketDebugger_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  50. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  51. <PrecompiledHeader>
  52. </PrecompiledHeader>
  53. </ClCompile>
  54. <Link>
  55. <AdditionalDependencies>RocketCore_d.lib;%(AdditionalDependencies)</AdditionalDependencies>
  56. <OutputFile>..\..\bin\$(ProjectName)_d.dll</OutputFile>
  57. <AdditionalLibraryDirectories>..\..\bin;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  58. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  59. <DataExecutionPrevention>
  60. </DataExecutionPrevention>
  61. </Link>
  62. </ItemDefinitionGroup>
  63. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  64. <ClCompile>
  65. <AdditionalIncludeDirectories>..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  66. <PreprocessorDefinitions>_WIN32;NDEBUG;RocketDebugger_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  67. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  68. <PrecompiledHeader>
  69. </PrecompiledHeader>
  70. </ClCompile>
  71. <Link>
  72. <AdditionalDependencies>RocketCore.lib;%(AdditionalDependencies)</AdditionalDependencies>
  73. <OutputFile>..\..\bin\$(ProjectName).dll</OutputFile>
  74. <AdditionalLibraryDirectories>..\..\bin;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  75. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  76. <DataExecutionPrevention>
  77. </DataExecutionPrevention>
  78. </Link>
  79. </ItemDefinitionGroup>
  80. <ItemGroup>
  81. <ClCompile Include="..\..\Source\Debugger\Plugin.cpp" />
  82. <ClCompile Include="..\..\Source\Debugger\ElementContextHook.cpp" />
  83. <ClCompile Include="..\..\Source\Debugger\ElementInfo.cpp" />
  84. <ClCompile Include="..\..\Source\Debugger\ElementLog.cpp" />
  85. <ClCompile Include="..\..\Source\Debugger\Debugger.cpp" />
  86. <ClCompile Include="..\..\Source\Debugger\Geometry.cpp" />
  87. <ClCompile Include="..\..\Source\Debugger\SystemInterface.cpp" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <ClInclude Include="..\..\Source\Debugger\Plugin.h" />
  91. <ClInclude Include="..\..\Source\Debugger\ElementContextHook.h" />
  92. <ClInclude Include="..\..\Source\Debugger\ElementInfo.h" />
  93. <ClInclude Include="..\..\Source\Debugger\ElementLog.h" />
  94. <ClInclude Include="..\..\Source\Debugger\BeaconSource.h" />
  95. <ClInclude Include="..\..\Source\Debugger\CommonSource.h" />
  96. <ClInclude Include="..\..\Source\Debugger\FontSource.h" />
  97. <ClInclude Include="..\..\Source\Debugger\InfoSource.h" />
  98. <ClInclude Include="..\..\Source\Debugger\LogSource.h" />
  99. <ClInclude Include="..\..\Source\Debugger\MenuSource.h" />
  100. <ClInclude Include="..\..\Include\Rocket\Debugger\Debugger.h" />
  101. <ClInclude Include="..\..\Source\Debugger\Geometry.h" />
  102. <ClInclude Include="..\..\Include\Rocket\Debugger\Header.h" />
  103. <ClInclude Include="..\..\Source\Debugger\SystemInterface.h" />
  104. <ClInclude Include="..\..\Include\Rocket\Debugger.h" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <ProjectReference Include="RocketCore.vcxproj">
  108. <Project>{1aac0b29-aeb9-4e3f-8edf-b46f8949c41b}</Project>
  109. <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  110. </ProjectReference>
  111. </ItemGroup>
  112. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  113. <ImportGroup Label="ExtensionTargets">
  114. </ImportGroup>
  115. </Project>