sql Linux.vcxproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>{bbb66990-0e34-4ace-b647-31fff0f9bd77}</ProjectGuid>
  15. <Keyword>Linux</Keyword>
  16. <RootNamespace>sql_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>libdbgSQL</TargetName>
  41. <TargetExt>.so</TargetExt>
  42. <RemoteProjectDir>$(RemoteRootDir)/sql/debug</RemoteProjectDir>
  43. <IncludePath>..\..\Framework;../../Framework/debug;/usr/include/postgresql/;$(IncludePath);$(ISenseIncludePath);..\..\Postgres\x64\include</IncludePath>
  44. <OutDir>$(RemoteRootDir)/sql/debug/</OutDir>
  45. <IntDir>$(RemoteRootDir)/sql/debug/</IntDir>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  48. <IncludePath>..\..\Framework;../../Framework/release;$(IncludePath);$(ISenseIncludePath);/usr/include/postgresql/;..\..\Postgres\x64\include</IncludePath>
  49. <TargetName>libSQL</TargetName>
  50. <TargetExt>.so</TargetExt>
  51. <RemoteProjectDir>$(RemoteRootDir)/sql/release</RemoteProjectDir>
  52. <OutDir>$(RemoteRootDir)/sql/release/</OutDir>
  53. <IntDir>$(RemoteRootDir)/sql/release/</IntDir>
  54. </PropertyGroup>
  55. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  56. <Link>
  57. <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
  58. </Link>
  59. <ClCompile>
  60. <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
  61. </ClCompile>
  62. </ItemDefinitionGroup>
  63. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  64. <Link>
  65. <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
  66. </Link>
  67. <ClCompile>
  68. <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
  69. </ClCompile>
  70. </ItemDefinitionGroup>
  71. <ItemGroup>
  72. <ClInclude Include="..\sql\sql.h" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ClCompile Include="..\sql\sql.cpp" />
  76. </ItemGroup>
  77. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  78. <ImportGroup Label="ExtensionTargets" />
  79. </Project>