Projet

Général

Profil

KDAriane » Historique » Version 5

François Rioult, 19/07/2010 22:25

1 1 François Rioult
h1. KDAriane installation
2
3 2 François Rioult
# First you have to checkout the "SVN repository":https://forge.greyc.fr/svn/kdariane/
4 1 François Rioult
<pre>
5 2 François Rioult
svn co https://forge.greyc.fr/svn/kdariane
6
</pre>
7 3 François Rioult
# set the shell variable KDARIANE to the folder where you checked out the SVN repository
8 2 François Rioult
<pre>
9
export KDARIANE=~/svn/kdariane
10
</pre>
11 3 François Rioult
# add the $KDARIANE/bin and the $JAVA_HOME/bin to your PATH :
12 2 François Rioult
<pre>
13
export PATH=$PATH:$KDARIANE/bin:$JAVA_HOME/bin
14
</pre>
15 4 François Rioult
# go in the KDARIANE folder then
16
<pre>
17
make
18
make install
19
</pre>
20 5 François Rioult
It will first build the C++ binaries then install them in the @bin@ folder and creates the @.ariane@ configuration file
21 2 François Rioult
# you can now launch Ariane with 
22
<pre>
23
java -jar ariane.jar
24 1 François Rioult
</pre>