1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?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>{bbb66990-0e34-4ace-b647-31fff0f9bd77}</ProjectGuid>
- <Keyword>Linux</Keyword>
- <RootNamespace>sql_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>
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
- <UseDebugLibraries>false</UseDebugLibraries>
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
- <ImportGroup Label="ExtensionSettings" />
- <ImportGroup Label="Shared" />
- <ImportGroup Label="PropertySheets" />
- <PropertyGroup Label="UserMacros" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <TargetName>libdbgSQL</TargetName>
- <TargetExt>.so</TargetExt>
- <RemoteProjectDir>$(RemoteRootDir)/sql/debug</RemoteProjectDir>
- <IncludePath>..\..\Framework;../../Framework/debug;/usr/include/postgresql/;$(IncludePath);$(ISenseIncludePath);..\..\Postgres\x64\include</IncludePath>
- <OutDir>$(ProjectDir)bin\$(Platform)\debug\</OutDir>
- <IntDir>$(ProjectDir)obj\$(Platform)\debug\</IntDir>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <IncludePath>..\..\Framework;../../Framework/release;$(IncludePath);$(ISenseIncludePath);/usr/include/postgresql/;..\..\Postgres\x64\include</IncludePath>
- <TargetName>libSQL</TargetName>
- <TargetExt>.so</TargetExt>
- <RemoteProjectDir>$(RemoteRootDir)/sql/release</RemoteProjectDir>
- <OutDir>$(ProjectDir)bin\$(Platform)\release\</OutDir>
- <IntDir>$(ProjectDir)obj\$(Platform)\release\</IntDir>
- </PropertyGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <Link>
- <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
- </Link>
- <ClCompile>
- <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
- </ClCompile>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <Link>
- <UnresolvedSymbolReferences>false</UnresolvedSymbolReferences>
- </Link>
- <ClCompile>
- <AdditionalOptions>-fPIC %(AdditionalOptions)</AdditionalOptions>
- </ClCompile>
- </ItemDefinitionGroup>
- <ItemGroup>
- <ClInclude Include="..\sql\sql.h" />
- </ItemGroup>
- <ItemGroup>
- <ClCompile Include="..\sql\sql.cpp" />
- </ItemGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
- <ImportGroup Label="ExtensionTargets" />
- </Project>
|