[go: up one dir, main page]

Menu

[0d024d]: / readme  Maximize  Restore  History

Download this file

39 lines (24 with data), 813 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
This is the source tree for the Compositor project on SourceForge.
http://compositor.sourceforge.net/
http://sourceforge.net/projects/compositor/


Building
========

To build, you need:
 - Java 1.7 or above
 - an internet connection
 - and Ant - see http://ant.apache.org/

Then:

cd build
ant all


If you connect to the internet through a proxy and the build fails when using
Ivy (which fetches dependencies for the example apps), try:

ant -autoproxy all


The Ant target "all" does everything you need to be able to use Compositor,
but it does not build a jar. You can list the alternatives to "all" by
doing:

ant -p


After building:
 - look at index.html
 - and try:
	java -classpath examples;classes;resources Examples

   (Unix/Linux users use : instead of ; obvs)