diff options
Diffstat (limited to 'cpp/demo/Database/Oracle/proc/oracle.props')
-rw-r--r-- | cpp/demo/Database/Oracle/proc/oracle.props | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/cpp/demo/Database/Oracle/proc/oracle.props b/cpp/demo/Database/Oracle/proc/oracle.props new file mode 100644 index 00000000000..860b825f1ac --- /dev/null +++ b/cpp/demo/Database/Oracle/proc/oracle.props @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ImportGroup Label="PropertySheets" /> + <PropertyGroup Label="UserMacros"> + <ORACLE_HOME>C:\oracle\product\12.1.0\dbhome_1</ORACLE_HOME> + <ORACLE_CLIENT_HOME>C:\oracle\client32\product\12.1.0\client_1</ORACLE_CLIENT_HOME> + </PropertyGroup> + <PropertyGroup Condition="'$(Platform)' == 'x64'"> + <LibraryPath>$(ORACLE_HOME)\precomp\LIB;$(LibraryPath)</LibraryPath> + <IncludePath>$(ORACLE_HOME)\precomp\public;$(IncludePath)</IncludePath> + <ExecutablePath>$(ORACLE_HOME)\bin;$(ExecutablePath)</ExecutablePath> + </PropertyGroup> + <PropertyGroup Condition="'$(Platform)' == 'Win32'"> + <LibraryPath>$(ORACLE_CLIENT_HOME)\precomp\LIB;$(LibraryPath)</LibraryPath> + <IncludePath>$(ORACLE_CLIENT_HOME)\precomp\public;$(IncludePath)</IncludePath> + <ExecutablePath>$(ORACLE_CLIENT_HOME)\bin;$(ExecutablePath)</ExecutablePath> + </PropertyGroup> + <ItemDefinitionGroup /> + <ItemGroup> + <BuildMacro Include="ORACLE_HOME"> + <Value>$(ORACLE_HOME)</Value> + <EnvironmentVariable>true</EnvironmentVariable> + </BuildMacro> + <BuildMacro Include="ORACLE_CLIENT_HOME"> + <Value>$(ORACLE_CLIENT_HOME)</Value> + <EnvironmentVariable>true</EnvironmentVariable> + </BuildMacro> + </ItemGroup> +</Project>
\ No newline at end of file |