Minigame Server.vcxproj 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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|ARM">
  5. <Configuration>Debug</Configuration>
  6. <Platform>ARM</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|ARM">
  9. <Configuration>Release</Configuration>
  10. <Platform>ARM</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Debug|x86">
  13. <Configuration>Debug</Configuration>
  14. <Platform>x86</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x86">
  17. <Configuration>Release</Configuration>
  18. <Platform>x86</Platform>
  19. </ProjectConfiguration>
  20. <ProjectConfiguration Include="Debug|x64">
  21. <Configuration>Debug</Configuration>
  22. <Platform>x64</Platform>
  23. </ProjectConfiguration>
  24. <ProjectConfiguration Include="Release|x64">
  25. <Configuration>Release</Configuration>
  26. <Platform>x64</Platform>
  27. </ProjectConfiguration>
  28. </ItemGroup>
  29. <PropertyGroup Label="Globals">
  30. <ProjectGuid>{71f06acf-40ea-4355-90e2-08672b6bd706}</ProjectGuid>
  31. <Keyword>Linux</Keyword>
  32. <RootNamespace>Minigame_Server</RootNamespace>
  33. <MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
  34. <ApplicationType>Linux</ApplicationType>
  35. <ApplicationTypeRevision>1.0</ApplicationTypeRevision>
  36. <TargetLinuxPlatform>Generic</TargetLinuxPlatform>
  37. <LinuxProjectType>{D51BCBC9-82E9-4017-911E-C93873C4EA2B}</LinuxProjectType>
  38. <ProjectName>MinigameServer</ProjectName>
  39. </PropertyGroup>
  40. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
  42. <UseDebugLibraries>true</UseDebugLibraries>
  43. </PropertyGroup>
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
  45. <UseDebugLibraries>false</UseDebugLibraries>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration">
  48. <UseDebugLibraries>true</UseDebugLibraries>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration">
  51. <UseDebugLibraries>false</UseDebugLibraries>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  54. <UseDebugLibraries>true</UseDebugLibraries>
  55. <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
  56. </PropertyGroup>
  57. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  58. <UseDebugLibraries>false</UseDebugLibraries>
  59. <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
  60. </PropertyGroup>
  61. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  62. <ImportGroup Label="ExtensionSettings" />
  63. <ImportGroup Label="Shared" />
  64. <ImportGroup Label="PropertySheets" />
  65. <PropertyGroup Label="UserMacros" />
  66. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  67. <OutDir>$(ProjectDir)bin\$(Platform)\debug\</OutDir>
  68. <IntDir>$(ProjectDir)obj\$(Platform)\debug\</IntDir>
  69. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/debug</RemoteProjectDir>
  70. <IncludePath>..\..\..\..\Allgemein\Framework;../../../Framework/debug;..\..\..\..\Allgemein\Network\Network;../../../Network/debug;..\..\..\..\Allgemein\sql\sql;../../../sql/debug;$(IncludePath)</IncludePath>
  71. <TargetExt />
  72. </PropertyGroup>
  73. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  74. <OutDir>$(ProjectDir)bin\$(Platform)\release\</OutDir>
  75. <IntDir>$(ProjectDir)obj\$(Platform)\release\</IntDir>
  76. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/release</RemoteProjectDir>
  77. <IncludePath>..\..\..\..\Allgemein\Framework;../../../Framework/release;..\..\..\..\Allgemein\Network\Network;../../../Network/release;..\..\..\..\Allgemein\sql\sql;../../../sql/release;$(IncludePath)</IncludePath>
  78. <TargetExt />
  79. </PropertyGroup>
  80. <ItemGroup>
  81. <ClCompile Include="Datenbank.cpp" />
  82. <ClCompile Include="main.cpp" />
  83. <ClCompile Include="MinigameServer.cpp" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <ClInclude Include="Datenbank.h" />
  87. <ClInclude Include="MinigameServer.h" />
  88. </ItemGroup>
  89. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  90. <Link>
  91. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/debug/bin/x64/debug;$(RemoteRootDir)/Network/debug/bin/x64/debug;$(RemoteRootDir)/Framework/debug/bin/x64/debug;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  92. <LibraryDependencies>dbgFramework;dbgNetwork;dbgSQL;pq;pthread</LibraryDependencies>
  93. </Link>
  94. </ItemDefinitionGroup>
  95. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  96. <Link>
  97. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/release/bin/x64/release;$(RemoteRootDir)/Network/release/bin/x64/release;$(RemoteRootDir)/Framework/release/bin/x64/release;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  98. <LibraryDependencies>Framework;Network;SQL;pq;pthread</LibraryDependencies>
  99. </Link>
  100. </ItemDefinitionGroup>
  101. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  102. <ImportGroup Label="ExtensionTargets" />
  103. </Project>