Files
geant4/source/persistency/CMakeLists.txt
T
2016-06-09 16:46:55 +02:00

43 lines
1.0 KiB
CMake

#------------------------------------------------------------------------------
# CMakeLists.txt
# Module : G4persistency
# Package: Geant4.src.G4persistency
#
# Top level CMakeLists.txt for a Geant4 Global Library
# or collection of sublibraries
#
# Generated on : 24/9/2010
#
# $Id: CMakeLists.txt,v 1.1 2010-09-29 18:49:49 bmorgan Exp $
#
#------------------------------------------------------------------------------
add_subdirectory(ascii)
# GDML only if required
if(GEANT4_USE_GDML)
add_subdirectory(gdml)
endif()
add_subdirectory(mctruth)
if(NOT GEANT4_BUILD_GRANULAR_LIBS)
include(Geant4MacroLibraryTargets)
if(GEANT4_USE_GDML)
GEANT4_GLOBAL_LIBRARY_TARGET(NAME G4persistency
COMPONENTS
ascii/sources.cmake
gdml/sources.cmake
mctruth/sources.cmake
)
else()
GEANT4_GLOBAL_LIBRARY_TARGET(NAME G4persistency
COMPONENTS
ascii/sources.cmake
mctruth/sources.cmake
)
endif()
endif()