52 lines
2.0 KiB
Properties
Executable File
52 lines
2.0 KiB
Properties
Executable File
##########################################################################
|
|
#
|
|
# File: devkit.properties
|
|
#
|
|
# Stores information used by the development kit.
|
|
# Predefined environment variables:
|
|
#
|
|
##########################################################################
|
|
|
|
# This property defines the master build number used for vendorVersion.
|
|
build=3.8.111
|
|
|
|
# This property defines the project's root directory
|
|
# where the the top level "build.xml" is located.
|
|
project.home=
|
|
|
|
# Useful environment variables
|
|
jdk.home=
|
|
|
|
##########################################################################
|
|
# Documentation Options
|
|
##########################################################################
|
|
|
|
htmldoc.copyright=Copyright © 2000-%year% Tridium Inc. All rights reserved.
|
|
|
|
##########################################################################
|
|
# Java Compiler
|
|
#
|
|
# Predefined:
|
|
# javac.classpath: java compiler classpath
|
|
# javac.out: java compiler output directory
|
|
# javac.src: java compiler source directory
|
|
# Required:
|
|
# javac.{edition}: should define command to compile
|
|
##########################################################################
|
|
|
|
# j2me (jikes)
|
|
javac.j2me=%rel.home%\\bin\\jikes.exe +Pno-shadow +Pno-switchcheck -target 1.3 \
|
|
%javac.debug% -classpath "%javac.classpath%" -d "%javac.out%" -depend +E %javac.src%\\*.java
|
|
|
|
# j2se-headless (jikes)
|
|
javac.j2se-headless=%rel.home%\\bin\\jikes.exe +Pno-shadow +Pno-switchcheck -target 1.3 \
|
|
%javac.debug% -classpath "%javac.classpath%" -d "%javac.out%" -depend +E %javac.src%\\*.java
|
|
|
|
# j2se (javac)
|
|
javac.j2se=%jdk.home%\\bin\\javac.exe -target 1.3 -source 1.3 -Xlint:-options -classpath "%javac.classpath%" \
|
|
%javac.debug% -d "%javac.out%" %javac.src%\\*.java
|
|
|
|
# j2se 5.0 (javac)
|
|
javac.j2se-5.0=%jdk.home%\\bin\\javac.exe -target 1.5 -source 1.5 -classpath "%javac.classpath%" \
|
|
%javac.debug% -d "%javac.out%" %javac.src%\\*.java
|