summaryrefslogtreecommitdiff
path: root/cpp/demo/Database/Oracle/proc/oracle.props
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-01-20 16:25:59 +0100
committerJose <jose@zeroc.com>2015-01-20 16:25:59 +0100
commitaccf3bcc88a76a205d5404af253795ffadc4965b (patch)
tree2a4bff0ea94f6c81f195b750baf1dfb01745ecdc /cpp/demo/Database/Oracle/proc/oracle.props
parentICE-6198 fixed IceBox demo to not require current directory to be added to li... (diff)
downloadice-accf3bcc88a76a205d5404af253795ffadc4965b.tar.bz2
ice-accf3bcc88a76a205d5404af253795ffadc4965b.tar.xz
ice-accf3bcc88a76a205d5404af253795ffadc4965b.zip
Fixed (ICE-6241) - Update Windows instructions in Oracle OCCI demo README
Diffstat (limited to 'cpp/demo/Database/Oracle/proc/oracle.props')
-rw-r--r--cpp/demo/Database/Oracle/proc/oracle.props29
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