forked from cs-au-dk/Artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
47 lines (29 loc) · 1.52 KB
/
INSTALL
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
45
46
47
The following instructions assumes you are using a (64 bit) Linux-based system.
Artemis have been successfully installed on Ubuntu 12.10 and Fedora 18.
0. Fetch all software dependencies using
make fetch-[apt|yum] (requires root privileges)
Artemis requires Qt version 4.8.x. If a suitable version of Qt is not
provided by your distribution, then you can use the following command
to download and compile a version compatible with Artemis.
make fetch-qt
This will place a version of Qt 4.8 in the `qt/` folder.
You can check your Qt version using the command ``qmake --version``
(if qmake is missing then Qt is not installed). Note, you need to
set the QTDIR and PATH variables described in step 1.
1. Configure your environment variables by running
export QTDIR=<qt_path>
export PATH=$QTDIR/bin:$PATH
export ARTEMISDIR=<artemis_git_reposity_path>
where `<qt_path>` is the QT 4.8 installation directory, either
the one provided by your distribution or the `qt/` folder
mentioned in step 0, and where `<artemis_git_repository_path>`
is the directory with this INSTALL file in it.
`<qt_path>` is /usr/share/qt4 on Ubuntu systems and
/usr/lib64/qt4/bin on Fedora.
2. Build Artemis
make all
3. Configure your path to include Artemis executable
export PATH=$ARTEMISDIR/artemis-code/dist:$PATH
4. Enable completion in bash by running
cp artemis-bash-complete /etc/bash_completion.d/artemis
as root.