Skip to content

Commit 2a8d6ba

Browse files
committed
add description how to build with older boost versions
1 parent 1e7cb35 commit 2a8d6ba

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.build

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
To build GENFIT cmake is needed in version 2.6 or higher.
22

33
To create the library, create a build directory and change into it. E.g.
4-
mkdir build; cd build
4+
mkdir build; cd build
55

66
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
811

912
And build:
10-
make
13+
make
1114

1215
The libraries are created in the subdirectory lib/ of the build directory.
1316

1417
To install the libraries and copy all header files into the directories lib/ and
1518
include/ in the root directory of the project, invoke
16-
make install
19+
make install
1720

1821

1922
To build the doxygen:
20-
make doc
23+
make doc
2124

2225
To build the examples/tests (also see README in test/):
23-
make tests
26+
make tests
2427

2528

2629

2730
To build GFRave and the vertexing examples, you need an installation of Rave (https://rave.hepforge.org/), and the environment variable RAVEPATH set.
28-
export RAVEPATH=<yourRaveDirectory>
31+
export RAVEPATH=<yourRaveDirectory>

0 commit comments

Comments
 (0)