ShopServer.vcxproj 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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;..\..\..\..\Allgemein\sql\sql;../../../sql/Release;$(IncludePath)</IncludePath>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  43. <TargetExt />
  44. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/Debug</RemoteProjectDir>
  45. <IncludePath>..\..\..\..\Allgemein\Framework;../../../Framework/Debug;..\..\..\..\Allgemein\Network\Network;../../../Network/Debug;..\..\..\..\Allgemein\sql\sql;../../../sql/Debug;$(IncludePath)</IncludePath>
  46. </PropertyGroup>
  47. <ItemGroup>
  48. <ClCompile Include="Datenbank.cpp" />
  49. <ClCompile Include="main.cpp" />
  50. <ClCompile Include="ShopServer.cpp" />
  51. <ClCompile Include="Updater.cpp" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <ClInclude Include="Datenbank.h" />
  55. <ClInclude Include="ShopServer.h" />
  56. <ClInclude Include="Updater.h" />
  57. </ItemGroup>
  58. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  59. <Link>
  60. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/Release/bin/x64/release;$(RemoteRootDir)/Network/Release/bin/x64/release;$(RemoteRootDir)/Framework/Release/bin/x64/release;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  61. <LibraryDependencies>Framework;Network;SQL;pq;pthread</LibraryDependencies>
  62. <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
  63. </Link>
  64. </ItemDefinitionGroup>
  65. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  66. <Link>
  67. <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
  68. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/Debug/bin/x64/debug;$(RemoteRootDir)/Network/Debug/bin/x64/debug;$(RemoteRootDir)/Framework/Debug/bin/x64/debug;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  69. <LibraryDependencies>dbgFramework;dbgNetwork;dbgSQL;pq;pthread</LibraryDependencies>
  70. </Link>
  71. </ItemDefinitionGroup>
  72. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  73. <ImportGroup Label="ExtensionTargets" />
  74. </Project>