]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenExternal/CMakeLists.txt
Correct use of ROOT_INCLUDE_DIR
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenExternal / CMakeLists.txt
1 # **************************************************************************
2 # * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
3 # *                                                                        *
4 # * Author: The ALICE Off-line Project.                                    *
5 # * Contributors are mentioned in the code where appropriate.              *
6 # *                                                                        *
7 # * Permission to use, copy, modify and distribute this software and its   *
8 # * documentation strictly for non-commercial purposes is hereby granted   *
9 # * without fee, provided that the above copyright notice appears in all   *
10 # * copies and that both the copyright notice and this permission notice   *
11 # * appear in the supporting documentation. The authors make no claims     *
12 # * about the suitability of this software for any purpose. It is          *
13 # * provided "as is" without express or implied warranty.                  *
14 # **************************************************************************/
15
16 #Module
17 set (MODULE EvtGenExternal)
18
19 # Module include folder
20 include_directories(${AliRoot_SOURCE_DIR}/TEvtGen/${MODULE})
21
22 # Additional includes - alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIR}
24                     ${AliRoot_SOURCE_DIR}/PYTHIA8
25                     ${AliRoot_SOURCE_DIR}/TEvtGen
26                     ${AliRoot_SOURCE_DIR}/TEvtGen/EvtGen
27                     ${AliRoot_SOURCE_DIR}/TEvtGen/Photos/src/photosCInterfaces
28                     ${AliRoot_SOURCE_DIR}/TEvtGen/Photos/src/eventRecordInterfaces
29                     ${AliRoot_SOURCE_DIR}/TEvtGen/Photos/src/photosFortranInterfaces
30                     ${AliRoot_SOURCE_DIR}/TEvtGen/Photos/src/utilities
31 )
32
33 # Sources - alphabetical order
34 set(SRCS
35   EvtExternalGenFactory.cpp
36   EvtExternalGenList.cpp
37   EvtPHOTOS.cpp
38   EvtPhotosEngine.cpp
39   EvtPythia6CommandConverter.cpp
40   EvtPythia.cpp
41   EvtPythiaEngine.cpp
42   EvtTauola.cpp
43   EvtTauolaEngine.cpp
44  )
45
46 # No dictionary
47
48 # Add a library to the project using the specified source files
49 add_library(${MODULE} SHARED ${SRCS})
50
51 # Do not generate the ROOT map
52 # Dependecies
53 set(LIBDEPS Photos Tauola pythia8175 EvtGen)
54
55 # Additional compilation flags
56 set (EVTGEN_PYTHIA "ON")
57 set (EVTGEN_PHOTOS "ON")
58 set (EVTGEN_TAUOLA "ON")
59
60 add_definitions ("-DEVTGEN_PYTHIA -DEVTGEN_PHOTOS -DEVTGEN_TAUOLA")
61
62 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "")
63
64 # Linking the library
65 target_link_libraries(${MODULE} ${LIBDEPS})
66
67 # System dependent: Modify the way the library is build
68 if(${CMAKE_SYSTEM} MATCHES Darwin)
69     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
70 endif(${CMAKE_SYSTEM} MATCHES Darwin)
71
72 # Installation
73 install(TARGETS ${MODULE} 
74   ARCHIVE DESTINATION lib
75   LIBRARY DESTINATION lib)
76 install(FILES ${HDRS} DESTINATION include)