Snake.vcxproj 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.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="Debug|x64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <PropertyGroup Label="Globals">
  22. <ProjectGuid>{6F83FB3E-9489-4466-B0C3-80C9E793786F}</ProjectGuid>
  23. <Keyword>Win32Proj</Keyword>
  24. <RootNamespace>Snake</RootNamespace>
  25. </PropertyGroup>
  26. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  27. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  28. <ConfigurationType>DynamicLibrary</ConfigurationType>
  29. <UseDebugLibraries>true</UseDebugLibraries>
  30. <PlatformToolset>v141</PlatformToolset>
  31. <CharacterSet>Unicode</CharacterSet>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  34. <ConfigurationType>DynamicLibrary</ConfigurationType>
  35. <UseDebugLibraries>true</UseDebugLibraries>
  36. <PlatformToolset>v141</PlatformToolset>
  37. <CharacterSet>MultiByte</CharacterSet>
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  40. <ConfigurationType>DynamicLibrary</ConfigurationType>
  41. <UseDebugLibraries>false</UseDebugLibraries>
  42. <PlatformToolset>v141</PlatformToolset>
  43. <WholeProgramOptimization>true</WholeProgramOptimization>
  44. <CharacterSet>MultiByte</CharacterSet>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  47. <ConfigurationType>DynamicLibrary</ConfigurationType>
  48. <UseDebugLibraries>false</UseDebugLibraries>
  49. <PlatformToolset>v141</PlatformToolset>
  50. <WholeProgramOptimization>true</WholeProgramOptimization>
  51. <CharacterSet>MultiByte</CharacterSet>
  52. </PropertyGroup>
  53. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  54. <ImportGroup Label="ExtensionSettings">
  55. </ImportGroup>
  56. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  57. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  58. </ImportGroup>
  59. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  60. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  61. </ImportGroup>
  62. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  63. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  64. </ImportGroup>
  65. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  66. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  67. </ImportGroup>
  68. <PropertyGroup Label="UserMacros" />
  69. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  70. <LinkIncremental>true</LinkIncremental>
  71. </PropertyGroup>
  72. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  73. <LinkIncremental>true</LinkIncremental>
  74. <IncludePath>..\..\..\..\..\Allgemein\Framework;..\..\..\Include;$(IncludePath)</IncludePath>
  75. <LibraryPath>..\..\..\..\..\Allgemein\Framework\x64\Debug;$(LibraryPath)</LibraryPath>
  76. <CustomBuildBeforeTargets>
  77. </CustomBuildBeforeTargets>
  78. </PropertyGroup>
  79. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  80. <LinkIncremental>false</LinkIncremental>
  81. <IncludePath>..\..\..\..\..\Allgemein\Framework;..\..\..\Include;$(IncludePath)</IncludePath>
  82. <LibraryPath>..\..\..\..\..\Allgemein\Framework\Release;$(LibraryPath)</LibraryPath>
  83. <CustomBuildBeforeTargets>Build</CustomBuildBeforeTargets>
  84. </PropertyGroup>
  85. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  86. <LinkIncremental>false</LinkIncremental>
  87. <IncludePath>..\..\..\..\..\Allgemein\Framework;..\..\..\Include;$(IncludePath)</IncludePath>
  88. <LibraryPath>..\..\..\..\..\Allgemein\Framework\x64\Release;$(LibraryPath)</LibraryPath>
  89. <CustomBuildBeforeTargets>Build</CustomBuildBeforeTargets>
  90. </PropertyGroup>
  91. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  92. <ClCompile>
  93. <PrecompiledHeader>
  94. </PrecompiledHeader>
  95. <WarningLevel>Level3</WarningLevel>
  96. <Optimization>Disabled</Optimization>
  97. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;SNAKE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  98. </ClCompile>
  99. <Link>
  100. <SubSystem>Windows</SubSystem>
  101. <GenerateDebugInformation>true</GenerateDebugInformation>
  102. </Link>
  103. </ItemDefinitionGroup>
  104. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  105. <ClCompile>
  106. <PrecompiledHeader>
  107. </PrecompiledHeader>
  108. <WarningLevel>Level3</WarningLevel>
  109. <Optimization>Disabled</Optimization>
  110. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;SNAKE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  111. </ClCompile>
  112. <Link>
  113. <SubSystem>Windows</SubSystem>
  114. <GenerateDebugInformation>true</GenerateDebugInformation>
  115. <AdditionalDependencies>Framework.lib;%(AdditionalDependencies)</AdditionalDependencies>
  116. </Link>
  117. <CustomBuildStep>
  118. <Outputs>kopieren...;%(Outputs)</Outputs>
  119. <Command>copy "..\x64\Debug\Snake.dll" "..\..\..\Fertig\Debug\Minigames\x64\Snake\bin\game.dll"</Command>
  120. </CustomBuildStep>
  121. </ItemDefinitionGroup>
  122. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  123. <ClCompile>
  124. <WarningLevel>Level3</WarningLevel>
  125. <PrecompiledHeader>
  126. </PrecompiledHeader>
  127. <Optimization>MaxSpeed</Optimization>
  128. <FunctionLevelLinking>true</FunctionLevelLinking>
  129. <IntrinsicFunctions>true</IntrinsicFunctions>
  130. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;SNAKE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  131. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  132. </ClCompile>
  133. <Link>
  134. <SubSystem>Windows</SubSystem>
  135. <GenerateDebugInformation>true</GenerateDebugInformation>
  136. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  137. <OptimizeReferences>true</OptimizeReferences>
  138. <AdditionalDependencies>Framework.lib;%(AdditionalDependencies)</AdditionalDependencies>
  139. </Link>
  140. <CustomBuildStep>
  141. <Outputs>kopieren...;%(Outputs)</Outputs>
  142. <Command>copy "..\Release\Snake.dll" "..\..\..\Fertig\Minigames\x32\Snake\bin\game.dll"</Command>
  143. </CustomBuildStep>
  144. </ItemDefinitionGroup>
  145. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  146. <ClCompile>
  147. <WarningLevel>Level3</WarningLevel>
  148. <PrecompiledHeader>
  149. </PrecompiledHeader>
  150. <Optimization>MaxSpeed</Optimization>
  151. <FunctionLevelLinking>true</FunctionLevelLinking>
  152. <IntrinsicFunctions>true</IntrinsicFunctions>
  153. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;SNAKE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  154. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  155. </ClCompile>
  156. <Link>
  157. <SubSystem>Windows</SubSystem>
  158. <GenerateDebugInformation>true</GenerateDebugInformation>
  159. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  160. <OptimizeReferences>true</OptimizeReferences>
  161. <AdditionalDependencies>Framework.lib;%(AdditionalDependencies)</AdditionalDependencies>
  162. </Link>
  163. <CustomBuildStep>
  164. <Outputs>kopieren...;%(Outputs)</Outputs>
  165. <Command>copy "..\x64\Release\Snake.dll" "..\..\..\Fertig\Minigames\x64\Snake\bin\game.dll"</Command>
  166. </CustomBuildStep>
  167. </ItemDefinitionGroup>
  168. <ItemGroup>
  169. <ClInclude Include="Game.h" />
  170. <ClInclude Include="Initialisierung.h" />
  171. <ClInclude Include="Map.h" />
  172. <ClInclude Include="Menü.h" />
  173. </ItemGroup>
  174. <ItemGroup>
  175. <ClCompile Include="Einstieg.cpp" />
  176. <ClCompile Include="Game.cpp" />
  177. <ClCompile Include="Initialisierung.cpp" />
  178. <ClCompile Include="Map.cpp" />
  179. <ClCompile Include="Menü.cpp" />
  180. </ItemGroup>
  181. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  182. <ImportGroup Label="ExtensionTargets">
  183. </ImportGroup>
  184. </Project>