forked from lessthanoptimal/GeoRegression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.txt
44 lines (29 loc) · 1.38 KB
/
install.txt
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
39
40
41
42
43
44
Geometric Regression Library (GeoRegression) is easy to build and install. The easiest way to build the library is using the provided ant build scripts. To use those the system must already have the following installed:
Build Requirements:
- Java Development Kit 1.6 or newer
- Ant
----------- Creating GeoRegression.jar -----------------
To build the library from a command line do the following:
1) Download source code.
2) Change into the project directory.
3) type (without quotes) "ant"
4) A jar has been created and stored in build/jar/GeoRegression.jar
5) Move the jar to the desired location
After "ant" has been typed you should see the following:
====================== BEGIN OUTPUT ================================
Buildfile: /path/to/georegression/build.xml
clean:
compile:
[mkdir] Created dir: /path/to//georegression/build/classes
[javac] Compiling 88 source files to /path/to//georegression/build/classes
jar:
[mkdir] Created dir: /path/to/georegression/build/jar
[jar] Building jar: /path/to/georegression/build/jar/GeoRegression.jar
main:
BUILD SUCCESSFUL
Total time: 2 seconds
====================== END OUTPUT ================================
------ Other Commands ----------
1) "ant clean" to purge old compiled code
1) "ant test" Compiles and runs unit tests
2) "ant testreport" Creates html files summarizing unit test results in build/test/report/index.html