ShopServer.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. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{e9aaef53-0fd8-4d09-b683-f1890bb87a4a}</ProjectGuid>
  15. <Keyword>Linux</Keyword>
  16. <RootNamespace>ShopServer</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)'=='Release|x64'">
  38. <TargetExt />
  39. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/release</RemoteProjectDir>
  40. <IncludePath>..\..\..\..\Allgemein\Framework;../../../Framework/release;..\..\..\..\Allgemein\Network\Network;../../../Network/release/Network;..\..\..\..\Allgemein\sql\sql;../../../sql/release/sql;$(IncludePath)</IncludePath>
  41. <OutDir>$(RemoteRootDir)/Server/$(ProjectName)/release/</OutDir>
  42. <IntDir>$(RemoteRootDir)/Server/$(ProjectName)/release/</IntDir>
  43. <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  46. <TargetExt />
  47. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/debug</RemoteProjectDir>
  48. <IncludePath>..\..\..\..\Allgemein\Framework;../../../Framework/debug;..\..\..\..\Allgemein\Network\Network;../../../Network/debug/Network;..\..\..\..\Allgemein\sql\sql;../../../sql/debug/sql;$(IncludePath)</IncludePath>
  49. <OutDir>$(RemoteRootDir)/Server/$(ProjectName)/debug/</OutDir>
  50. <IntDir>$(RemoteRootDir)/Server/$(ProjectName)/debug/</IntDir>
  51. <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
  52. </PropertyGroup>
  53. <ItemGroup>
  54. <ClCompile Include="Datenbank.cpp" />
  55. <ClCompile Include="main.cpp" />
  56. <ClCompile Include="ShopServer.cpp" />
  57. <ClCompile Include="Updater.cpp" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <ClInclude Include="Datenbank.h" />
  61. <ClInclude Include="ShopServer.h" />
  62. <ClInclude Include="Updater.h" />
  63. </ItemGroup>
  64. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  65. <Link>
  66. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/release;$(RemoteRootDir)/Network/release;$(RemoteRootDir)/Framework/release;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  67. <LibraryDependencies>Framework;Network;SQL;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)'=='Debug|x64'">
  73. <Link>
  74. <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
  75. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/debug;$(RemoteRootDir)/Network/debug;$(RemoteRootDir)/Framework/debug;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  76. <LibraryDependencies>dbgFramework;dbgNetwork;dbgSQL;pq;pthread;ssl</LibraryDependencies>
  77. <OutputFile>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</OutputFile>
  78. </Link>
  79. </ItemDefinitionGroup>
  80. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  81. <ImportGroup Label="ExtensionTargets" />
  82. </Project>