oracle-environment.wxs.j2 729 B

123456789101112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
  3. xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension">
  4. <Fragment>
  5. <ComponentGroup Id="OracleEnvironment">
  6. <Component Id="ORACLE_ENV" Guid="13ed28fd-a2d8-45e3-9c0f-8ec8d9e3ad16" Directory="INSTALLDIR">
  7. <Environment Id="OCI_LIB64" Name="OCI_LIB64" Value="[INSTALLDIR]instantclient_{{ instant_client_version }}" Permanent="yes" Part="last" Action="set" System="yes" />
  8. <Environment Id="PATH" Name="PATH" Value="[INSTALLDIR]instantclient_{{instant_client_version}}" Permanent="yes" Part="last" Action="set" System="yes" />
  9. </Component>
  10. </ComponentGroup>
  11. </Fragment>
  12. </Wix>