|
File Releases, Updates,
Downloads and Documentation
These are the latest updates to the source
code, documentation and binaries.
All released binaries work under Windows and Linux. Make sure you
compile using with the JDK 1.5.X or greater.
To compile the source, download the latest source
bundle or checkout the latest version of the code via anonymous CVS. An
overview of the source tree can be found here.
The Following components are used by DC
Before trying to compile or run,
download and place the jars somewhere
in your classpath. Here is an example of setting up the classpath:
On Unix:
export CLASSPATH=$CLASSPATH:$DC_JARS\EXML.jar
export CLASSPATH=$CLASSPATH:$DC_JARS\cf.jar
export CLASSPATH=$CLASSPATH:$DC_JARS\cbeans.jar
export CLASSPATH=$CLASSPATH:$DC_JAR\cutils.jar
On Windows:
set
CLASSPATH=%CLASSPATH%;%DC_JARS%\EXML.jar
set CLASSPATH=%CLASSPATH%;%DC_JARS%\cf.jar
set CLASSPATH=%CLASSPATH%;%DC_JARS%\cbeans.jar
set CLASSPATH=%CLASSPATH%;%DC_JARS%\cutils.jar
Note : DC_JARS
specifies the location of the jar files.
To start up the AbaGUIBuilder from the command line type:
java -Xms128m
-Xmx384m ch.abacus.designcockpit.ide.DesignCockpit
Anonymous CVS
Login first with:
cvs
-d:pserver:anonymous@www.openabacus.org:/usr/local/cvsroot login
CVS will prompt you for a login, enter “anonymous” with no password.
Now you can checkout the code:
cvs
-d:pserver:anonymous@www.openabacus.org:/usr/local/cvsroot co dc
|