]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGenExternal/CMakeLists.txt
Resolving the symbols in each library
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenExternal / CMakeLists.txt
CommitLineData
e706c082 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
17set (MODULE EvtGenExternal)
18
19# Module include folder
20include_directories(${AliRoot_SOURCE_DIR}/TEvtGen/${MODULE})
21
22# Additional includes - alphabetical order except ROOT
23include_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
34set(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
49add_library(${MODULE} SHARED ${SRCS})
50
51# Do not generate the ROOT map
6f2765e2 52# Dependecies
53set(LIBDEPS Photos Tauola pythia8175 EvtGen)
e706c082 54
55# Additional compilation flags
56set (EVTGEN_PYTHIA "ON")
57set (EVTGEN_PHOTOS "ON")
58set (EVTGEN_TAUOLA "ON")
59
60add_definitions ("-DEVTGEN_PYTHIA -DEVTGEN_PHOTOS -DEVTGEN_TAUOLA")
61
68aeb13b 62set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "")
6f2765e2 63
64# Linking the library
65target_link_libraries(${MODULE} ${LIBDEPS})
e706c082 66
67# System dependent: Modify the way the library is build
68if(${CMAKE_SYSTEM} MATCHES Darwin)
69 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
70endif(${CMAKE_SYSTEM} MATCHES Darwin)
71
72# Installation
73install(TARGETS ${MODULE}
74 ARCHIVE DESTINATION lib
75 LIBRARY DESTINATION lib)
76install(FILES ${HDRS} DESTINATION include)