Geant4 Cross Reference |
1 # - G4phonon module build definition << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4phonon >> 4 # Package: Geant4.src.G4processes.G4phonon >> 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/10/2013 >> 13 # >> 14 # >> 15 #------------------------------------------------------------------------------ 2 16 >> 17 # 3 # Define the Geant4 Module. 18 # Define the Geant4 Module. 4 geant4_add_module(G4solidstate_phonon << 19 # 5 PUBLIC_HEADERS << 20 GEANT4_DEFINE_MODULE(NAME G4solidstate_phonon >> 21 HEADERS 6 G4LatticeManager.hh 22 G4LatticeManager.hh 7 G4LatticeReader.hh 23 G4LatticeReader.hh 8 G4PhononDownconversion.hh 24 G4PhononDownconversion.hh 9 G4PhononPolarization.hh 25 G4PhononPolarization.hh 10 G4PhononReflection.hh 26 G4PhononReflection.hh 11 G4PhononScattering.hh 27 G4PhononScattering.hh 12 G4PhononTrackMap.hh 28 G4PhononTrackMap.hh 13 G4VPhononProcess.hh 29 G4VPhononProcess.hh 14 SOURCES << 30 SOURCES 15 G4LatticeManager.cc 31 G4LatticeManager.cc 16 G4LatticeReader.cc 32 G4LatticeReader.cc 17 G4PhononDownconversion.cc 33 G4PhononDownconversion.cc 18 G4PhononPolarization.cc 34 G4PhononPolarization.cc 19 G4PhononReflection.cc 35 G4PhononReflection.cc 20 G4PhononScattering.cc 36 G4PhononScattering.cc 21 G4PhononTrackMap.cc 37 G4PhononTrackMap.cc 22 G4VPhononProcess.cc) << 38 G4VPhononProcess.cc >> 39 GRANULAR_DEPENDENCIES >> 40 G4bosons >> 41 G4geometrymng >> 42 G4globman >> 43 G4materials >> 44 G4partman >> 45 G4procman >> 46 G4track >> 47 G4volumes >> 48 GLOBAL_DEPENDENCIES >> 49 G4geometry >> 50 G4global >> 51 G4materials >> 52 G4particles >> 53 G4track >> 54 LINK_LIBRARIES >> 55 ) >> 56 >> 57 # List any source specific properties here 23 58 24 geant4_module_link_libraries(G4solidstate_phon << 25 PUBLIC << 26 G4globman << 27 G4procman << 28 PRIVATE << 29 G4bosons << 30 G4geometrymng << 31 G4heprandom << 32 G4materials << 33 G4partman << 34 G4track) <<