1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup Label="ProjectConfigurations">
- <ProjectConfiguration Include="Debug|x64">
- <Configuration>Debug</Configuration>
- <Platform>x64</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release|x64">
- <Configuration>Release</Configuration>
- <Platform>x64</Platform>
- </ProjectConfiguration>
- </ItemGroup>
- <PropertyGroup Label="Globals">
- <ProjectGuid>{cfd616b5-30f8-4bd1-aeb1-bd8809294805}</ProjectGuid>
- <Keyword>Linux</Keyword>
- <RootNamespace>AppServer_Linux</RootNamespace>
- <MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
- <ApplicationType>Linux</ApplicationType>
- <ApplicationTypeRevision>1.0</ApplicationTypeRevision>
- <TargetLinuxPlatform>Generic</TargetLinuxPlatform>
- <LinuxProjectType>{D51BCBC9-82E9-4017-911E-C93873C4EA2B}</LinuxProjectType>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
- <UseDebugLibraries>true</UseDebugLibraries>
- <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
- <UseDebugLibraries>false</UseDebugLibraries>
- <ConfigurationType>Application</ConfigurationType>
- <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
- <ImportGroup Label="ExtensionSettings" />
- <ImportGroup Label="Shared" />
- <ImportGroup Label="PropertySheets" />
- <PropertyGroup Label="UserMacros" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <TargetName>AppServer</TargetName>
- <TargetExt>
- </TargetExt>
- <RemoteProjectDir>$(RemoteRootDir)/Server/AppServer/release</RemoteProjectDir>
- <IncludePath>..\..\..\Allgemein\Framework;../../../Framework/release;..\..\..\Allgemein\Network\Network;../../../Network/release;..\..\..\Allgemein\sql\sql;../../../sql/release;..\AppServer;$(IncludePath)</IncludePath>
- <LibraryPath>
- </LibraryPath>
- <OutDir>$(ProjectDir)bin\$(Platform)\release\</OutDir>
- <IntDir>$(ProjectDir)obj\$(Platform)\release\</IntDir>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <TargetName>AppServer</TargetName>
- <TargetExt />
- <RemoteProjectDir>$(RemoteRootDir)/Server/AppServer/debug</RemoteProjectDir>
- <IncludePath>..\..\..\Allgemein\Framework;../../../Framework/debug;..\..\..\Allgemein\Network\Network;../../../Network/debug;..\..\..\Allgemein\sql\sql;../../../sql/debug;..\AppServer;$(IncludePath)</IncludePath>
- <LibraryPath>
- </LibraryPath>
- <OutDir>$(ProjectDir)bin\$(Platform)\debug\</OutDir>
- <IntDir>$(ProjectDir)obj\$(Platform)\debug\</IntDir>
- </PropertyGroup>
- <ItemGroup>
- <ClInclude Include="..\AppServer\AppServer.h" />
- <ClInclude Include="..\AppServer\Datenbank.h" />
- </ItemGroup>
- <ItemGroup>
- <ClCompile Include="..\AppServer\AppServer.cpp" />
- <ClCompile Include="..\AppServer\Datenbank.cpp" />
- <ClCompile Include="..\AppServer\main.cpp" />
- </ItemGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <Link>
- <LibraryDependencies>dbgFramework;dbgNetwork;dbgSQL;pq;pthread</LibraryDependencies>
- <SharedLibrarySearchPath>%(SharedLibrarySearchPath)</SharedLibrarySearchPath>
- <AdditionalLibraryDirectories>$(RemoteRootDir)/Framework/debug/bin/x64/debug;$(RemoteRootDir)/Network/debug/bin/x64/debug;$(RemoteRootDir)/sql/debug/bin/x64/debug;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
- <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
- </Link>
- <ClCompile />
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <Link>
- <LibraryDependencies>Framework;Network;SQL;pq;pthread</LibraryDependencies>
- <AdditionalLibraryDirectories>$(RemoteRootDir)/Framework/release/bin/x64/release;$(RemoteRootDir)/Network/release/bin/x64/release;$(RemoteRootDir)/sql/release/bin/x64/release;/usr/lib/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
- <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
- </Link>
- <ClCompile>
- <AdditionalOptions>-Wl,-rpath,../lib %(AdditionalOptions)</AdditionalOptions>
- </ClCompile>
- </ItemDefinitionGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
- <ImportGroup Label="ExtensionTargets" />
- </Project>
|