source: trunk/source/digits_hits/hits/sources.cmake @ 1350

Last change on this file since 1350 was 1350, checked in by garnier, 13 years ago

update to last version 4.9.4

File size: 1.4 KB
Line 
1#------------------------------------------------------------------------------
2# sources.cmake
3# Module : G4hits
4# Package: Geant4.src.G4digits_hits.G4hits
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: sources.cmake,v 1.1 2010/09/29 18:38:41 bmorgan Exp $
15#
16#------------------------------------------------------------------------------
17
18# List external includes needed.
19include_directories(${CLHEP_INCLUDE_DIRS})
20
21# List internal includes needed.
22include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include)
23include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include)
24include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include)
25
26#
27# Define the Geant4 Module.
28#
29include(Geant4MacroDefineModule)
30GEANT4_DEFINE_MODULE(NAME G4hits
31    HEADERS
32        G4HCofThisEvent.hh
33        G4THitsCollection.hh
34        G4THitsMap.hh
35        G4VHit.hh
36        G4VHitsCollection.hh
37    SOURCES
38        G4HCofThisEvent.cc
39        G4THitsCollection.cc
40        G4VHit.cc
41        G4VHitsCollection.cc
42    GRANULAR_DEPENDENCIES
43        G4globman
44    GLOBAL_DEPENDENCIES
45        G4global
46    LINK_LIBRARIES
47)
48
49# List any source specific properties here
50
Note: See TracBrowser for help on using the repository browser.