HistorieServer.vcxproj 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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|x64">
  5. <Configuration>Debug</Configuration>
  6. <Platform>x64</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|x64">
  9. <Configuration>Release</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ClCompile Include="Datenbank.cpp" />
  15. <ClCompile Include="HistorieServer.cpp" />
  16. <ClCompile Include="main.cpp" />
  17. <ClCompile Include="SpielServerKlient.cpp" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ClInclude Include="Datenbank.h" />
  21. <ClInclude Include="HistorieServer.h" />
  22. <ClInclude Include="SpielServerKlient.h" />
  23. </ItemGroup>
  24. <PropertyGroup Label="Globals">
  25. <ProjectGuid>{f8a1eb79-424d-4233-b0f3-cbb4ca3a8601}</ProjectGuid>
  26. <Keyword>Linux</Keyword>
  27. <RootNamespace>HistorieServer</RootNamespace>
  28. <MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
  29. <ApplicationType>Linux</ApplicationType>
  30. <ApplicationTypeRevision>1.0</ApplicationTypeRevision>
  31. <TargetLinuxPlatform>Generic</TargetLinuxPlatform>
  32. <LinuxProjectType>{D51BCBC9-82E9-4017-911E-C93873C4EA2B}</LinuxProjectType>
  33. </PropertyGroup>
  34. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  36. <UseDebugLibraries>true</UseDebugLibraries>
  37. <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  40. <UseDebugLibraries>false</UseDebugLibraries>
  41. <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
  42. </PropertyGroup>
  43. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  44. <ImportGroup Label="ExtensionSettings" />
  45. <ImportGroup Label="Shared" />
  46. <ImportGroup Label="PropertySheets" />
  47. <PropertyGroup Label="UserMacros" />
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  49. <TargetExt />
  50. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/debug</RemoteProjectDir>
  51. <IncludePath>..\..\..\..\Allgemein\Framework;../../../Framework/debug;..\..\..\..\Allgemein\Network\Network;../../../Network/debug/Network;..\..\..\..\Allgemein\sql\sql;../../../sql/debug/sql;$(IncludePath)</IncludePath>
  52. <OutDir>$(RemoteRootDir)/Server/$(ProjectName)/debug/</OutDir>
  53. <IntDir>$(RemoteRootDir)/Server/$(ProjectName)/debug/</IntDir>
  54. <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
  55. </PropertyGroup>
  56. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  57. <TargetExt />
  58. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/release</RemoteProjectDir>
  59. <IncludePath>..\..\..\..\Allgemein\Framework;../../../Framework/release;..\..\..\..\Allgemein\Network\Network;../../../Network/release/Network;..\..\..\..\Allgemein\sql\sql;../../../sql/release/sql;$(IncludePath)</IncludePath>
  60. <OutDir>$(RemoteRootDir)/Server/$(ProjectName)/release/</OutDir>
  61. <IntDir>$(RemoteRootDir)/Server/$(ProjectName)/release/</IntDir>
  62. <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
  63. </PropertyGroup>
  64. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  65. <Link>
  66. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/debug;$(RemoteRootDir)/Network/debug;$(RemoteRootDir)/Framework/debug;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  67. <LibraryDependencies>dbgFramework;dbgNetwork;dbgSQL;pq;pthread;ssl</LibraryDependencies>
  68. <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
  69. <OutputFile>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</OutputFile>
  70. </Link>
  71. </ItemDefinitionGroup>
  72. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  73. <Link>
  74. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/release;$(RemoteRootDir)/Network/release;$(RemoteRootDir)/Framework/release;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  75. <LibraryDependencies>Framework;Network;SQL;pq;pthread;ssl</LibraryDependencies>
  76. <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
  77. <OutputFile>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</OutputFile>
  78. </Link>
  79. </ItemDefinitionGroup>
  80. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  81. <ImportGroup Label="ExtensionTargets" />
  82. </Project>