Geant4 Cross Reference |
1 # - G4detector module build definition << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4detector >> 4 # Package: Geant4.src.G4digits_hits.G4detector >> 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 # >> 15 #------------------------------------------------------------------------------ 2 16 >> 17 # List external includes needed. >> 18 include_directories(${CLHEP_INCLUDE_DIRS}) >> 19 >> 20 # List internal includes needed. >> 21 include_directories(${CMAKE_SOURCE_DIR}/source/digits_hits/hits/include) >> 22 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/biasing/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/volumes/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/intercoms/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 31 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 32 include_directories(${CMAKE_SOURCE_DIR}/source/track/include) >> 33 >> 34 # 3 # Define the Geant4 Module. 35 # Define the Geant4 Module. 4 geant4_add_module(G4detector << 36 # 5 PUBLIC_HEADERS << 37 include(Geant4MacroDefineModule) 6 G4CellScoreComposer.hh << 38 GEANT4_DEFINE_MODULE(NAME G4detector 7 G4CellScoreValues.hh << 39 HEADERS 8 G4CollectionNameVector.hh << 40 G4CellScoreComposer.hh 9 G4HCtable.hh << 41 G4CellScoreValues.hh 10 G4MultiFunctionalDetector.hh << 42 G4CollectionNameVector.hh 11 G4SDManager.hh << 43 G4HCtable.hh 12 G4SDStructure.hh << 44 G4MultiFunctionalDetector.hh 13 G4SDmessenger.hh << 45 G4SDManager.hh 14 G4SensitiveVolumeList.hh << 46 G4SDStructure.hh 15 G4TrackLogger.hh << 47 G4SDmessenger.hh 16 G4TScoreHistFiller.hh << 48 G4SensitiveVolumeList.hh 17 G4TScoreHistFiller.icc << 49 G4SensitiveVolumeList.icc 18 G4VPrimitivePlotter.hh << 50 G4TrackLogger.hh 19 G4VPrimitiveScorer.hh << 51 G4VPrimitiveScorer.hh 20 G4VReadOutGeometry.hh << 52 G4VReadOutGeometry.hh 21 G4VSDFilter.hh << 53 G4VSDFilter.hh 22 G4VScoreHistFiller.hh << 54 G4VSensitiveDetector.hh 23 G4VSensitiveDetector.hh << 55 G4MultiSensitiveDetector.hh 24 G4MultiSensitiveDetector.hh << 56 SOURCES 25 SOURCES << 57 G4CellScoreComposer.cc 26 G4CellScoreComposer.cc << 58 G4HCtable.cc 27 G4HCtable.cc << 59 G4MultiFunctionalDetector.cc 28 G4MultiFunctionalDetector.cc << 60 G4SDManager.cc 29 G4SDManager.cc << 61 G4SDStructure.cc 30 G4SDStructure.cc << 62 G4SDmessenger.cc 31 G4SDmessenger.cc << 63 G4SensitiveVolumeList.cc 32 G4SensitiveVolumeList.cc << 64 G4TrackLogger.cc 33 G4TrackLogger.cc << 65 G4VPrimitiveScorer.cc 34 G4VPrimitiveScorer.cc << 66 G4VReadOutGeometry.cc 35 G4VReadOutGeometry.cc << 67 G4VSDFilter.cc 36 G4VSDFilter.cc << 68 G4VSensitiveDetector.cc 37 G4VScoreHistFiller.cc << 69 G4MultiSensitiveDetector.cc 38 G4VSensitiveDetector.cc << 70 GRANULAR_DEPENDENCIES 39 G4MultiSensitiveDetector.cc) << 71 G4geombias >> 72 G4geometrymng >> 73 G4globman >> 74 G4hits >> 75 G4intercoms >> 76 G4materials >> 77 G4navigation >> 78 G4partman >> 79 G4track >> 80 G4volumes >> 81 GLOBAL_DEPENDENCIES >> 82 G4geometry >> 83 G4global >> 84 G4intercoms >> 85 G4materials >> 86 G4particles >> 87 G4track >> 88 LINK_LIBRARIES >> 89 ) >> 90 >> 91 # List any source specific properties here 40 92 41 geant4_module_link_libraries(G4detector << 42 PUBLIC G4track G4hits G4geometrymng G4interc << 43 PRIVATE G4navigation) <<