]>
Commit | Line | Data |
---|---|---|
e969a926 | 1 | # -*- mode: cmake -*- |
2 | ||
3 | # Create a library called "lib<name>" which includes the source files given in | |
4 | # the array . | |
5 | # The extension is already found. Any number of sources could be listed here. | |
6 | ||
7 | set(INCLUDE_DIRECTORIES | |
8 | ${CMAKE_SOURCE_DIR}/PYTHIA8 | |
9 | ${ALIROOT_INSTALL_DIR}/include | |
10 | ${ROOT_INCLUDE_DIR} | |
11 | ) | |
12 | ||
13 | include_directories( ${INCLUDE_DIRECTORIES}) | |
14 | ||
15 | set(LINK_DIRECTORIES | |
16 | ${ROOT_LIBRARY_DIR} | |
17 | ) | |
18 | ||
19 | link_directories( ${LINK_DIRECTORIES}) | |
20 | ||
21 | SetModule() | |
22 | ||
23 | include(CMake_libAliPythia8.txt) | |
24 |