Chat Server Linux.vcxproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>{93f0686b-52b5-4729-8cf2-9692b80cd581}</ProjectGuid>
  31. <Keyword>Linux</Keyword>
  32. <RootNamespace>Chat_Server_Linux</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. </PropertyGroup>
  39. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  40. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
  41. <UseDebugLibraries>true</UseDebugLibraries>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
  44. <UseDebugLibraries>false</UseDebugLibraries>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration">
  47. <UseDebugLibraries>true</UseDebugLibraries>
  48. </PropertyGroup>
  49. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration">
  50. <UseDebugLibraries>false</UseDebugLibraries>
  51. </PropertyGroup>
  52. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  53. <UseDebugLibraries>true</UseDebugLibraries>
  54. </PropertyGroup>
  55. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  56. <UseDebugLibraries>false</UseDebugLibraries>
  57. </PropertyGroup>
  58. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  59. <ImportGroup Label="ExtensionSettings" />
  60. <ImportGroup Label="Shared" />
  61. <ImportGroup Label="PropertySheets" />
  62. <PropertyGroup Label="UserMacros" />
  63. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  64. <IncludePath>..\..\..\Allgemein\Framework;..\..\..\Allgemein\Network\Network;..\..\..\Allgemein\sql\sql;$(IncludePath);$(ISenseIncludePath)</IncludePath>
  65. <RemoteProjectDir>$(RemoteRootDir)/Server/ChatServer/Release</RemoteProjectDir>
  66. </PropertyGroup>
  67. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  68. <IncludePath>..\..\..\Allgemein\Framework;..\..\..\Allgemein\Network\Network;..\..\..\Allgemein\sql\sql;$(IncludePath);$(ISenseIncludePath)</IncludePath>
  69. <RemoteProjectDir>$(RemoteRootDir)/Server/ChatServer/Debug</RemoteProjectDir>
  70. <TargetName>ChatServer</TargetName>
  71. </PropertyGroup>
  72. <ItemGroup>
  73. <ClCompile Include="Chat Server\ChatServer.cpp" />
  74. <ClCompile Include="Chat Server\Datenbank.cpp" />
  75. <ClCompile Include="Chat Server\main.cpp" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <ClInclude Include="Chat Server\ChatServer.h" />
  79. <ClInclude Include="Chat Server\Datenbank.h" />
  80. </ItemGroup>
  81. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  82. <Link>
  83. <LibraryDependencies>dbgFramework;dbgNetwork;dbgSQL;%(LibraryDependencies)</LibraryDependencies>
  84. </Link>
  85. </ItemDefinitionGroup>
  86. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  87. <Link>
  88. <LibraryDependencies>Framework;Network;Sql;%(LibraryDependencies)</LibraryDependencies>
  89. </Link>
  90. </ItemDefinitionGroup>
  91. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  92. <ImportGroup Label="ExtensionTargets" />
  93. </Project>