You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build GENFIT cmake is needed in version 2.6 or higher.
2
2
3
3
To create the library, create a build directory and change into it. E.g.
4
-
mkdir build; cd build
4
+
mkdir build; cd build
5
5
6
6
Now create the Makefiles by invoking:
7
-
cmake ..
7
+
cmake ..
8
+
9
+
On some systems with an older boost version, you instead might have to type (cf. http://stackoverflow.com/questions/9948375/cmake-find-package-succeeds-but-returns-wrong-path):
10
+
cmake .. -DBoost_NO_BOOST_CMAKE=ON
8
11
9
12
And build:
10
-
make
13
+
make
11
14
12
15
The libraries are created in the subdirectory lib/ of the build directory.
13
16
14
17
To install the libraries and copy all header files into the directories lib/ and
15
18
include/ in the root directory of the project, invoke
16
-
make install
19
+
make install
17
20
18
21
19
22
To build the doxygen:
20
-
make doc
23
+
make doc
21
24
22
25
To build the examples/tests (also see README in test/):
23
-
make tests
26
+
make tests
24
27
25
28
26
29
27
30
To build GFRave and the vertexing examples, you need an installation of Rave (https://rave.hepforge.org/), and the environment variable RAVEPATH set.
0 commit comments