]>
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}/JETAN | |
8 | ${CMAKE_SOURCE_DIR}/STEER | |
9 | ${CMAKE_SOURCE_DIR}/ANALYSIS | |
10 | ${CMAKE_SOURCE_DIR}/TPC | |
11 | ${ROOT_INCLUDE_DIR} | |
12 | ) | |
13 | ||
14 | include_directories( ${INCLUDE_DIRECTORIES}) | |
15 | ||
16 | set(LINK_DIRECTORIES | |
17 | ${ROOT_LIBRARY_DIR} | |
18 | ) | |
19 | ||
20 | link_directories( ${LINK_DIRECTORIES}) | |
21 | ||
22 | SetModule() | |
23 | ||
24 | include (CMake_libJETAN.txt) | |
25 | ||
26 | include (CMake_libJETANMC.txt) | |
27 | ||
28 |