MainServer.vcxproj 4.5 KB

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