]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/Photos/CMakeLists.txt
Converting TEvtGen to native cmake
[u/mrichter/AliRoot.git] / TEvtGen / Photos / 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 Photos)
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}/TEvtGen
25                     ${AliRoot_SOURCE_DIR}/TEvtGen/Photos/src/photosCInterfaces
26                     ${AliRoot_SOURCE_DIR}/TEvtGen/Photos/src/utilities
27                     ${AliRoot_SOURCE_DIR}/TEvtGen/Photos/src/photosFortranInterfaces
28 )
29
30 # Sources - alphabetical order
31 set(SRCS
32 src/photos-fortran/forW-MEc.cxx
33 src/photos-fortran/forZ-MEc.cxx
34 src/photos-fortran/photosC.cxx
35 src/utilities/Log.cxx
36 src/utilities/PhotosRandom.cxx
37 src/utilities/PhotosUtilities.cxx
38 src/utilities/PhotosDebugRandom.cxx
39 src/photosFortranInterfaces/PH_HEPEVT_Interface.cxx
40 src/photosCInterfaces/PhotosBranch.cxx
41 src/photosCInterfaces/PhotosParticle.cxx
42 src/photosCInterfaces/Photos.cxx
43 src/photosCInterfaces/PhotosEvent.cxx
44 src/eventRecordInterfaces/PhotosHEPEVTEvent.cxx
45 src/eventRecordInterfaces/PhotosHEPEVTParticle.cxx
46 src/eventRecordInterfaces/PhotosHepMCEvent.cxx
47 src/eventRecordInterfaces/PhotosHepMCParticle.cxx
48 )
49
50 # No dictionary
51
52 # Add a library to the project using the specified source files
53 add_library(${MODULE} SHARED ${SRCS})
54
55 # Do not generate the ROOT map
56
57 # Additional compilation flags
58 set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "-O -g")
59 target_link_libraries(${MODULE} )
60
61 # System dependent: Modify the way the library is build
62 if(${CMAKE_SYSTEM} MATCHES Darwin)
63     set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
64 endif(${CMAKE_SYSTEM} MATCHES Darwin)
65
66 # Installation
67 install(TARGETS ${MODULE} 
68   ARCHIVE DESTINATION lib
69   LIBRARY DESTINATION lib)
70 install(FILES ${HDRS} DESTINATION include)