]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenExternal/CMakeLists.txt
Fixes for object target dependencies
[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_DIRS}
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
53 # Additional compilation flags
54 set (EVTGEN_PYTHIA "ON")
55 set (EVTGEN_PHOTOS "ON")
56 set (EVTGEN_TAUOLA "ON")
57
58 add_definitions ("-DEVTGEN_PYTHIA -DEVTGEN_PHOTOS -DEVTGEN_TAUOLA")
59
60 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "")
61 target_link_libraries(${MODULE} )
62
63 # System dependent: Modify the way the library is build
64 if(${CMAKE_SYSTEM} MATCHES Darwin)
65     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
66 endif(${CMAKE_SYSTEM} MATCHES Darwin)
67
68 # Installation
69 install(TARGETS ${MODULE} 
70   ARCHIVE DESTINATION lib
71   LIBRARY DESTINATION lib)
72 install(FILES ${HDRS} DESTINATION include)