Geant4 Cross Reference |
1 # - G4decay module build definition << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4decay >> 4 # Package: Geant4.src.G4processes.G4decay >> 5 # >> 6 # Sources description for a library. >> 7 # Lists the sources and headers of the code explicitely. >> 8 # Lists include paths needed. >> 9 # Lists the internal granular and global dependencies of the library. >> 10 # Source specific properties should be added at the end. >> 11 # >> 12 # Generated on : 24/9/2010 >> 13 # >> 14 # $Id$ >> 15 # >> 16 #------------------------------------------------------------------------------ 2 17 >> 18 # List external includes needed. >> 19 include_directories(${CLHEP_INCLUDE_DIRS}) >> 20 >> 21 # List internal includes needed. >> 22 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/magneticfield/include) >> 23 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/management/include) >> 24 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/navigation/include) >> 25 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/solids/CSG/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/volumes/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/intercoms/include) >> 31 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 32 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 33 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 34 include_directories(${CMAKE_SOURCE_DIR}/source/processes/hadrons/ions/include) >> 35 include_directories(${CMAKE_SOURCE_DIR}/source/track/include) >> 36 >> 37 # 3 # Define the Geant4 Module. 38 # Define the Geant4 Module. 4 geant4_add_module(G4decay << 39 # 5 PUBLIC_HEADERS << 40 include(Geant4MacroDefineModule) 6 G4Decay.hh << 41 GEANT4_DEFINE_MODULE(NAME G4decay 7 G4DecayProcessType.hh << 42 HEADERS 8 G4DecayWithSpin.hh << 43 G4Decay.hh 9 G4PionDecayMakeSpin.hh << 44 G4DecayProcessType.hh 10 G4UnknownDecay.hh << 45 G4DecayWithSpin.hh 11 G4VExtDecayer.hh << 46 G4PionDecayMakeSpin.hh 12 SOURCES << 47 G4UnknownDecay.hh 13 G4Decay.cc << 48 G4VExtDecayer.hh 14 G4DecayWithSpin.cc << 49 SOURCES 15 G4PionDecayMakeSpin.cc << 50 G4Decay.cc 16 G4UnknownDecay.cc) << 51 G4DecayWithSpin.cc >> 52 G4PionDecayMakeSpin.cc >> 53 G4UnknownDecay.cc >> 54 GRANULAR_DEPENDENCIES >> 55 G4csg >> 56 G4geometrymng >> 57 G4globman >> 58 G4intercoms >> 59 G4magneticfield >> 60 G4materials >> 61 G4navigation >> 62 G4partman >> 63 G4procman >> 64 G4track >> 65 G4volumes >> 66 GLOBAL_DEPENDENCIES >> 67 G4geometry >> 68 G4global >> 69 G4intercoms >> 70 G4materials >> 71 G4particles >> 72 G4track >> 73 LINK_LIBRARIES >> 74 ) >> 75 >> 76 # List any source specific properties here 17 77 18 geant4_module_link_libraries(G4decay << 19 PUBLIC << 20 G4globman << 21 G4partman << 22 G4procman << 23 G4track << 24 PRIVATE << 25 G4hepgeometry << 26 G4heprandom << 27 G4magneticfield << 28 G4navigation) <<