This file describes the syntax of the configuration files used to run JBuilder and related utilities.
Each configuration option is written on a single line and has a simple syntax: directive parameters
The recognized directives are:javapath <path> | - Describes the location of the java executable |
mainclass <class> | - Determines the application class passed to the Java VM |
addpath <path> | - Adds a path entry to the Java classpath |
addbootpath <path> | - Adds a path entry to the Java boot path |
addjars <path> | - Adds all JAR files in the specified directory to the path |
vmparam <params> | - Passes the provided parameters to the Java VM |
include <path> | - Interprets commands from another configuration file |
includedir <path> | - Interprets commands from every configuration file in the specified directory |
copyenv <name> | - Creates a Java system property named containing the named environment variable's value (The Java property has the prefix "borland.copyenv." prepended to the variable name) |
exportenv | - Creates a temporary Java properties file with a complete copy of all of the host operating system's environment variables. The Java property named "borland.exportenv" will be set with the full path name of the temporary properties file |
A comment can be added using the "#" sign:
# This is a comment