Oracle Waveset 8.1.1 Deployment Guide

Set Up the Build Environment

This section contains instructions for setting up your build environment.

Prerequisites:

You must install the JDK version required for your Waveset version. See “Supported Software and Environments” in the Waveset Release Notes for information.

After installing the JDK, you must install the REF Kit by copying the entire /REF directory to your system.

On Windows

If you are working on Microsoft Windows operating system, use the following steps to set up your build environment:

ProcedureTo Set Up Your Build Environment in Windows

  1. Change directories to a new directory.

  2. Create a file called ws.bat.

  3. Add the following lines to this file:


    set WSHOME=<Path where REF Kit is installed>
    set JAVA_HOME=<Path where JDK is installed>
    set PATH=%PATH%;%JAVA_HOME%\bin
    :

    Where you set:

    • JAVA_HOME to the path to where the JDK is installed.

    • WSHOME to the path to where the REF Kit is installed.

  4. Save and close the file.

On UNIX

If you are working on a UNIX operating system, use the following steps to set up your build environment:

ProcedureTo Set Up Your Build Environment in UNIX

  1. Change directories to a new directory.

  2. Create a file called ws.sh.

  3. Add the following lines to this file:


    WSHOME=<path_where_REF_is_installed>
    JAVA_HOME=<path_where_JDK_is_installed>
    PATH=$JAVA_HOME/bin:$PATH
    
    export WSHOME JAVA_HOME PATH
    :

    Where you set:

    • WSHOME to the path to where the REF Kit is installed.

    • JAVA_HOME to the path to where JDK is installed.

  4. Save and close the file.