]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/ITSsim/CMakeLists.txt
920d23e28e89cb8839bd5a55a2717006b4a32545
[u/mrichter/AliRoot.git] / ITS / ITSsim / 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 ITSsim)
18
19 # Module include folder
20 include_directories(${CMAKE_SOURCE_DIR}/ITS/${MODULE})
21
22 # Additional include folders in alphabetical order except ROOT
23 include_directories(${ROOT_INCLUDE_DIRS} 
24                     ${CMAKE_SOURCE_DIR}/STEER/CDB
25                     ${CMAKE_SOURCE_DIR}/STEER/ESD
26                     ${CMAKE_SOURCE_DIR}/STEER/STEERBase
27                     ${CMAKE_SOURCE_DIR}/STEER/STEER
28                     ${CMAKE_SOURCE_DIR}/TPC
29                    )
30
31 # Sources in alphabetical order
32 set(SRCS
33     AliITS.cxx
34     AliITSDetTypeSim.cxx
35     AliITSDigitizer.cxx
36     AliITSetfSDD.cxx
37     AliITSFOEfficiencySPDColumn.cxx
38     AliITSFOEfficiencySPD.cxx
39     AliITSFOGeneratorSPD.cxx
40     AliITSFONoiseSPD.cxx
41     AliITSFOSignalsSPD.cxx
42     AliITShit.cxx
43     AliITSmodule.cxx
44     AliITSQADataMakerSim.cxx
45     AliITSQASDDDataMakerSim.cxx
46     AliITSQASPDDataMakerSim.cxx
47     AliITSQASSDDataMakerSim.cxx
48     AliITSsDigitize.cxx
49     AliITSsimulation.cxx
50     AliITSsimulationFastPoints.cxx
51     AliITSsimulationSDD.cxx
52     AliITSsimulationSPD.cxx
53     AliITSsimulationSSD.cxx
54     AliITSSimuParam.cxx
55     AliITSTableSSD.cxx
56     AliITSTrigger.cxx
57     AliITSTriggerFOProcessor.cxx
58     AliITSv11.cxx
59     AliITSv11GeomCable.cxx
60     AliITSv11GeomCableFlat.cxx
61     AliITSv11GeomCableRound.cxx
62     AliITSv11Geometry.cxx
63     AliITSv11GeometrySDD.cxx
64     AliITSv11GeometrySPD.cxx
65     AliITSv11GeometrySSD.cxx
66     AliITSv11GeometrySupport.cxx
67    )
68
69 # Headers from sources
70 string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
71
72 # Generate the dictionary
73 # It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
74 get_directory_property(incdirs INCLUDE_DIRECTORIES)
75 generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
76
77 # Generate the ROOT map
78 # Dependecies
79 set(LIBDEPS CDB ESD STEERBase STEER Graf)
80 generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
81
82
83 # Add a library to the project using the specified source files
84 add_library(${MODULE} SHARED ${SRCS} G__${MODULE}.cxx)
85
86 # Additional compilation flags
87 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
88
89 # System dependent: Modify the way the library is build
90 if(${CMAKE_SYSTEM} MATCHES Darwin)
91     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
92 endif(${CMAKE_SYSTEM} MATCHES Darwin)
93
94 # Installation
95 install(TARGETS ${MODULE}
96         ARCHIVE DESTINATION lib
97         LIBRARY DESTINATION lib)
98
99 install(FILES ${HDRS} DESTINATION include)