]>
Commit | Line | Data |
---|---|---|
e969a926 | 1 | # -*- mode: cmake -*- |
2 | # Create a library called "lib<name>" which includes the source files given in | |
3 | # the array . | |
4 | # The extension is already found. Any number of sources could be listed here. | |
5 | ||
6 | set(INCLUDE_DIRECTORIES | |
7 | ${CMAKE_SOURCE_DIR}/PWG3 | |
8 | ${CMAKE_SOURCE_DIR}/PWG3/base | |
9 | ${CMAKE_SOURCE_DIR}/PWG3/muon | |
10 | ${CMAKE_SOURCE_DIR}/PWG3/vertexingHF | |
11 | ${CMAKE_SOURCE_DIR}/PWG3/vertexingOld | |
12 | ${CMAKE_SOURCE_DIR}/STEER | |
13 | ${CMAKE_SOURCE_DIR}/ANALYSIS | |
eae5edc6 | 14 | ${CMAKE_SOURCE_DIR}/CORRFW |
e969a926 | 15 | ${ROOT_INCLUDE_DIR} |
16 | ) | |
17 | ||
18 | include_directories( ${INCLUDE_DIRECTORIES}) | |
19 | ||
20 | set(LINK_DIRECTORIES | |
21 | ${ROOT_LIBRARY_DIR} | |
22 | ) | |
23 | ||
24 | link_directories( ${LINK_DIRECTORIES}) | |
25 | ||
26 | SetModule() | |
27 | ||
28 | include(CMake_libPWG3base.txt) | |
29 | ||
30 | include(CMake_libPWG3.txt) | |
31 | ||
32 | include(CMake_libPWG3vertexingHF.txt) | |
33 | ||
34 | include(CMake_libPWG3vertexingOld.txt) | |
35 | ||
36 | include(CMake_libPWG3muon.txt) |