1<!-- simple file to drive creation of WiX Environment elements
2  System - "yes" means set these for the system, not just current user
3  Permanent - "no" means make sure they are removed on uninstall
4  Part - "last" means add it to the end of the current value
5-->
6
7<envVars>
8  <env name="jar" group="group_java">
9    <Environment Id="classpathdb" Name="CLASSPATH" Action="set" System="yes" Part="last" Permanent="no" Value="[INSTALLDIR]jar\db.jar" />
10  </env>
11  <env name="jar" group="group_sql">
12    <Environment Id="classpathjdbc" Name="CLASSPATH" Action="set" System="yes" Part="last" Permanent="no" Value="[INSTALLDIR]jar\jdbc.jar" />
13  </env>
14  <env name="bin" group="group_runtime">
15    <Environment Id="path1" Name="PATH" Action="set" System="yes" Part="last" Permanent="no" Value="[INSTALLDIR]bin" />
16  </env>
17</envVars>
18