summaryrefslogtreecommitdiff
path: root/building.txt
blob: 274e235cb9081d61a2fc14a70467e46a6419a359 (plain)
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
Using the CMake build system
============================

There are basically two options for how to run ToME once built.



Option #1 : Run ToME from the build directory
=============================================

Simply run the commands below.

       $ cmake .
       $ make

You should now be able to run

       $ ./src/tome2

to start ToME.

This is currently the recommended option.



Option #2: Run ToME from a system install location
==================================================

Run

        $ cmake -DSYSTEM_INSTALL:BOOL=true .
        $ make
        $ sudo make install

You can now run ToME from anywhere.

NOTE: The user running ToME must have write access to the
install location's lib/data subdirectory for the first run.
(This is because the *.raw files will be generated the first
time ToME is run.)

You can also use DESTDIR when installing to install into a different
location (useful with e.g. stow or when building distribution packages).