Geant4 Cross Reference |
1 # - G4scoring module build definition << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4scoring >> 4 # Package: Geant4.src.G4processes.G4scoring >> 5 # >> 6 # Sources description for a library. >> 7 # Lists the sources and headers of the code explicitly. >> 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 # 3 # Define the Geant4 Module. 18 # Define the Geant4 Module. 4 geant4_add_module(G4scoring << 19 # 5 PUBLIC_HEADERS << 20 GEANT4_DEFINE_MODULE(NAME G4scoring 6 G4ParallelWorldProcess.hh << 21 HEADERS 7 G4ParallelWorldProcessStore.hh << 22 G4EnergySplitter.hh 8 G4ParallelWorldScoringProcess.hh << 23 G4EnergySplitter.icc 9 G4ScoreSplittingProcess.hh << 24 G4ParallelWorldProcess.hh 10 PRIVATE_HEADERS << 25 G4ParallelWorldProcessStore.hh 11 G4EnergySplitter.hh << 26 G4ParallelWorldScoringProcess.hh 12 G4EnergySplitter.icc << 27 G4ScoreSplittingProcess.hh 13 SOURCES << 28 SOURCES 14 G4EnergySplitter.cc << 29 G4EnergySplitter.cc 15 G4ParallelWorldProcess.cc << 30 G4ParallelWorldProcess.cc 16 G4ParallelWorldProcessStore.cc << 31 G4ParallelWorldProcessStore.cc 17 G4ParallelWorldScoringProcess.cc << 32 G4ParallelWorldScoringProcess.cc 18 G4ScoreSplittingProcess.cc) << 33 G4ScoreSplittingProcess.cc >> 34 GRANULAR_DEPENDENCIES >> 35 G4cuts >> 36 G4detector >> 37 G4muons >> 38 G4emutils >> 39 G4geombias >> 40 G4geometrymng >> 41 G4globman >> 42 G4hits >> 43 G4intercoms >> 44 G4magneticfield >> 45 G4materials >> 46 G4navigation >> 47 G4partman >> 48 G4procman >> 49 G4track >> 50 G4transportation >> 51 G4volumes >> 52 GLOBAL_DEPENDENCIES >> 53 G4digits_hits >> 54 G4geometry >> 55 G4global >> 56 G4intercoms >> 57 G4materials >> 58 G4particles >> 59 G4track >> 60 LINK_LIBRARIES >> 61 ) >> 62 >> 63 # List any source specific properties here 19 64 20 geant4_module_link_libraries(G4scoring << 21 PUBLIC << 22 G4geometrymng << 23 G4globman << 24 G4magneticfield << 25 G4navigation << 26 G4procman << 27 PRIVATE << 28 G4cuts << 29 G4detector << 30 G4emutils << 31 G4intercoms << 32 G4materials << 33 G4muons << 34 G4partman << 35 G4track << 36 G4transportation << 37 G4volumes) <<