RocketDebugger.vcxproj 6.1 KB

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