]>
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}/ANALYSIS | |
8 | ${CMAKE_SOURCE_DIR}/ANALYSIS/Aliengui | |
9 | ${CMAKE_SOURCE_DIR}/STEER | |
10 | ${CMAKE_SOURCE_DIR}/TPC | |
11 | ${CMAKE_SOURCE_DIR}/ITS | |
12 | ${ROOT_INCLUDE_DIR} | |
13 | ) | |
14 | ||
15 | include_directories( ${INCLUDE_DIRECTORIES}) | |
16 | ||
17 | set(LINK_DIRECTORIES | |
18 | ${ROOT_LIBRARY_DIR} | |
19 | ) | |
20 | ||
21 | link_directories( ${LINK_DIRECTORIES}) | |
22 | ||
23 | SetModule() | |
24 | ||
25 | include(CMake_libANALYSISalice.txt) | |
26 | ||
27 | include(CMake_libANALYSIS.txt) | |
28 | ||
e969a926 | 29 | include(CMake_libANALYSISRL.txt) |
30 | ||
31 | include(CMake_libAliengui.txt) | |
32 | ||
33 | include(CMake_binaliengui.txt) | |
34 | ||
35 | ||
36 |