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 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/10/2013 >> 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/geometry/management/include) >> 22 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/volumes/include) >> 23 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 24 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 25 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/particles/bosons/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/processes/management/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/track/include) >> 31 >> 32 # 3 # Define the Geant4 Module. 33 # Define the Geant4 Module. 4 geant4_add_module(G4solidstate_phonon << 34 # 5 PUBLIC_HEADERS << 35 include(Geant4MacroDefineModule) >> 36 GEANT4_DEFINE_MODULE(NAME G4phonon >> 37 HEADERS 6 G4LatticeManager.hh 38 G4LatticeManager.hh 7 G4LatticeReader.hh 39 G4LatticeReader.hh 8 G4PhononDownconversion.hh 40 G4PhononDownconversion.hh 9 G4PhononPolarization.hh 41 G4PhononPolarization.hh 10 G4PhononReflection.hh 42 G4PhononReflection.hh 11 G4PhononScattering.hh 43 G4PhononScattering.hh 12 G4PhononTrackMap.hh 44 G4PhononTrackMap.hh 13 G4VPhononProcess.hh 45 G4VPhononProcess.hh 14 SOURCES << 46 SOURCES 15 G4LatticeManager.cc 47 G4LatticeManager.cc 16 G4LatticeReader.cc 48 G4LatticeReader.cc 17 G4PhononDownconversion.cc 49 G4PhononDownconversion.cc 18 G4PhononPolarization.cc 50 G4PhononPolarization.cc 19 G4PhononReflection.cc 51 G4PhononReflection.cc 20 G4PhononScattering.cc 52 G4PhononScattering.cc 21 G4PhononTrackMap.cc 53 G4PhononTrackMap.cc 22 G4VPhononProcess.cc) << 54 G4VPhononProcess.cc >> 55 GRANULAR_DEPENDENCIES >> 56 G4bosons >> 57 G4geometrymng >> 58 G4globman >> 59 G4materials >> 60 G4partman >> 61 G4procman >> 62 G4track >> 63 G4volumes >> 64 GLOBAL_DEPENDENCIES >> 65 G4geometry >> 66 G4global >> 67 G4materials >> 68 G4particles >> 69 G4track >> 70 LINK_LIBRARIES >> 71 ) >> 72 >> 73 # List any source specific properties here 23 74 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) <<