Network Linux.vcxproj 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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>{6c19e412-b93c-45d5-b95d-feaf978aea55}</ProjectGuid>
  15. <Keyword>Linux</Keyword>
  16. <RootNamespace>Network_Linux</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. <ConfigurationType>DynamicLibrary</ConfigurationType>
  27. <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
  28. </PropertyGroup>
  29. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  30. <UseDebugLibraries>false</UseDebugLibraries>
  31. <ConfigurationType>DynamicLibrary</ConfigurationType>
  32. <RemoteRootDir>/home/kolja/projects</RemoteRootDir>
  33. </PropertyGroup>
  34. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  35. <ImportGroup Label="ExtensionSettings" />
  36. <ImportGroup Label="Shared" />
  37. <ImportGroup Label="PropertySheets" />
  38. <PropertyGroup Label="UserMacros" />
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  40. <TargetName>libdbgNetwork</TargetName>
  41. <TargetExt>.so</TargetExt>
  42. <RemoteProjectDir>$(RemoteRootDir)/Network/debug</RemoteProjectDir>
  43. <IncludePath>..\Framework;$(IncludePath);$(ISenseIncludePath);../../Framework/release</IncludePath>
  44. <OutDir>$(RemoteRootDir)/Network/debug/</OutDir>
  45. <IntDir>$(RemoteRootDir)/Network/debug/</IntDir>
  46. <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  49. <RemoteProjectDir>$(RemoteRootDir)/Network/release</RemoteProjectDir>
  50. <TargetExt>.so</TargetExt>
  51. <IncludePath>..\Framework;$(IncludePath);$(ISenseIncludePath);../../Framework/release</IncludePath>
  52. <TargetName>libNetwork</TargetName>
  53. <OutDir>$(RemoteRootDir)/Network/release/</OutDir>
  54. <IntDir>$(RemoteRootDir)/Network/release/</IntDir>
  55. <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
  56. </PropertyGroup>
  57. <ItemGroup>
  58. <ClCompile Include="Network\HttpRequest.cpp" />
  59. <ClCompile Include="Network\Klient.cpp" />
  60. <ClCompile Include="Network\Network.cpp" />
  61. <ClCompile Include="Network\Server.cpp" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <ClInclude Include="Network\HttpRequest.h" />
  65. <ClInclude Include="Network\Klient.h" />
  66. <ClInclude Include="Network\Network.h" />
  67. <ClInclude Include="Network\Server.h" />
  68. </ItemGroup>
  69. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  70. <Link />
  71. <ClCompile>
  72. <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
  73. </ClCompile>
  74. <Link>
  75. <ForceUndefineSymbolReferences>
  76. </ForceUndefineSymbolReferences>
  77. <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
  78. </Link>
  79. </ItemDefinitionGroup>
  80. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  81. <Link />
  82. <ClCompile>
  83. <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
  84. <AdditionalIncludeDirectories>%(ClCompile.AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  85. </ClCompile>
  86. <Link>
  87. <ForceUndefineSymbolReferences>
  88. </ForceUndefineSymbolReferences>
  89. <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
  90. </Link>
  91. <CustomBuildStep>
  92. <Outputs>kopieren;%(Outputs)</Outputs>
  93. </CustomBuildStep>
  94. </ItemDefinitionGroup>
  95. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  96. <ImportGroup Label="ExtensionTargets" />
  97. </Project>