Network Linux.vcxproj 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. </PropertyGroup>
  28. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  29. <UseDebugLibraries>false</UseDebugLibraries>
  30. <ConfigurationType>DynamicLibrary</ConfigurationType>
  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)'=='Debug|x64'">
  38. <TargetName>libdbgNetwork</TargetName>
  39. <TargetExt>.so</TargetExt>
  40. <RemoteProjectDir>$(RemoteRootDir)/Network/debug</RemoteProjectDir>
  41. <IncludePath>..\Framework;$(IncludePath);$(ISenseIncludePath);../../Framework/release</IncludePath>
  42. <OutDir>$(ProjectDir)bin\$(Platform)\debug\</OutDir>
  43. <IntDir>$(ProjectDir)obj\$(Platform)\debug\</IntDir>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  46. <RemoteProjectDir>$(RemoteRootDir)/Network/release</RemoteProjectDir>
  47. <TargetExt>.so</TargetExt>
  48. <IncludePath>..\Framework;$(IncludePath);$(ISenseIncludePath);../../Framework/release</IncludePath>
  49. <TargetName>libNetwork</TargetName>
  50. <OutDir>$(ProjectDir)bin\$(Platform)\release\</OutDir>
  51. <IntDir>$(ProjectDir)obj\$(Platform)\release\</IntDir>
  52. </PropertyGroup>
  53. <ItemGroup>
  54. <ClCompile Include="Network\HttpRequest.cpp" />
  55. <ClCompile Include="Network\Klient.cpp" />
  56. <ClCompile Include="Network\Network.cpp" />
  57. <ClCompile Include="Network\Server.cpp" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <ClInclude Include="Network\HttpRequest.h" />
  61. <ClInclude Include="Network\Klient.h" />
  62. <ClInclude Include="Network\Network.h" />
  63. <ClInclude Include="Network\Server.h" />
  64. </ItemGroup>
  65. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  66. <Link />
  67. <ClCompile>
  68. <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
  69. </ClCompile>
  70. <Link>
  71. <ForceUndefineSymbolReferences>
  72. </ForceUndefineSymbolReferences>
  73. <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
  74. </Link>
  75. </ItemDefinitionGroup>
  76. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  77. <Link />
  78. <ClCompile>
  79. <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
  80. </ClCompile>
  81. <Link>
  82. <ForceUndefineSymbolReferences>
  83. </ForceUndefineSymbolReferences>
  84. <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
  85. </Link>
  86. <CustomBuildStep>
  87. <Outputs>kopieren;%(Outputs)</Outputs>
  88. </CustomBuildStep>
  89. </ItemDefinitionGroup>
  90. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  91. <ImportGroup Label="ExtensionTargets" />
  92. </Project>