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}/EMCAL |
8 | ${CMAKE_SOURCE_DIR}/EVE |
9 | ${CMAKE_SOURCE_DIR}/EVE/EveBase |
10 | ${CMAKE_SOURCE_DIR}/EVE/EveDet |
11 | ${CMAKE_SOURCE_DIR}/EVE/EveHLT |
12 | ${CMAKE_SOURCE_DIR}/STEER |
13 | ${CMAKE_SOURCE_DIR}/RAW |
14 | ${CMAKE_SOURCE_DIR}/MUON |
15 | ${CMAKE_SOURCE_DIR}/MUON/mapping |
16 | ${CMAKE_SOURCE_DIR}/TRD |
17 | ${CMAKE_SOURCE_DIR}/TOF |
18 | ${CMAKE_SOURCE_DIR}/ITS |
19 | ${CMAKE_SOURCE_DIR}/TPC |
20 | ${CMAKE_SOURCE_DIR}/PMD |
21 | ${CMAKE_SOURCE_DIR}/T0 |
caa2518c |
22 | ${CMAKE_SOURCE_DIR}/VZERO |
e969a926 |
23 | ${CMAKE_SOURCE_DIR}/HLT/BASE |
24 | ${CMAKE_SOURCE_DIR}/HLT/BASE/HOMER |
25 | ${ROOT_INCLUDE_DIR} |
26 | ) |
27 | |
28 | include_directories( ${INCLUDE_DIRECTORIES}) |
29 | |
30 | set(LINK_DIRECTORIES |
31 | ${ROOT_LIBRARY_DIR} |
32 | ) |
33 | |
34 | link_directories( ${LINK_DIRECTORIES}) |
35 | |
36 | SetModule() |
37 | |
38 | include(CMake_libEveBase.txt) |
39 | |
40 | include(CMake_libEveDet.txt) |
41 | |
42 | include(CMake_libEveHLT.txt) |
43 | |
44 | include(CMake_binalieve.txt) |
45 | |