AnmeldungServer.vcxproj 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>{fd37374d-c224-43a9-8d45-be8af117e091}</ProjectGuid>
  15. <Keyword>Linux</Keyword>
  16. <RootNamespace>AnmeldungServer</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. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/release</RemoteProjectDir>
  39. <IncludePath>..\..\..\..\Allgemein\Framework;..\..\..\..\Allgemein\Network\Network;..\..\..\..\Allgemein\sql\sql;../../../Framework/release;../../../Network/release/Network;../../../sql/release/sql;$(IncludePath)</IncludePath>
  40. <TargetExt />
  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. <RemoteProjectDir>$(RemoteRootDir)/Server/$(ProjectName)/debug</RemoteProjectDir>
  47. <IncludePath>..\..\..\..\Allgemein\Framework;..\..\..\..\Allgemein\Network\Network;..\..\..\..\Allgemein\sql\sql;../../../Framework/debug;../../../Network/debug/Network;../../../sql/debug/sql;$(IncludePath)</IncludePath>
  48. <TargetExt />
  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="AnmeldungServer.cpp" />
  55. <ClCompile Include="Datenbank.cpp" />
  56. <ClCompile Include="main.cpp" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <ClInclude Include="AnmeldungServer.h" />
  60. <ClInclude Include="Datenbank.h" />
  61. </ItemGroup>
  62. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  63. <Link>
  64. <LibraryDependencies>Framework;Network;SQL;pq;pthread;ssl</LibraryDependencies>
  65. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/release;$(RemoteRootDir)/Network/release;$(RemoteRootDir)/Framework/release;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  66. <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
  67. <OutputFile>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</OutputFile>
  68. </Link>
  69. </ItemDefinitionGroup>
  70. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  71. <Link>
  72. <LibraryDependencies>dbgFramework;dbgNetwork;dbgSQL;pq;pthread;ssl</LibraryDependencies>
  73. <AdditionalLibraryDirectories>$(RemoteRootDir)/sql/debug;$(RemoteRootDir)/Network/debug;$(RemoteRootDir)/Framework/debug;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  74. <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
  75. <OutputFile>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</OutputFile>
  76. </Link>
  77. <ClCompile>
  78. <PreprocessorDefinitions>DEBUG</PreprocessorDefinitions>
  79. </ClCompile>
  80. </ItemDefinitionGroup>
  81. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  82. <ImportGroup Label="ExtensionTargets" />
  83. </Project>