Back to home page

EIC code displayed by LXR

 
 

    


Warning, /geant4/examples/extended/analysis/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 #---Adding all analysis examples subdirectories explicitly
0002 
0003 cmake_minimum_required(VERSION 3.16...3.27)
0004 
0005 find_package(Geant4)
0006 include(${Geant4_USE_FILE})
0007 
0008 #----------------------------------------------------------------------------
0009 
0010 add_subdirectory(AnaEx01)
0011 add_subdirectory(AnaEx03)
0012 add_subdirectory(B1Con)
0013 
0014 #----------------------------------------------------------------------------
0015 # AnaEx02 example requires ROOT
0016 #
0017 find_package(ROOT QUIET)
0018 if(ROOT_FOUND)
0019   add_subdirectory(AnaEx02)
0020 else()
0021   message(STATUS "G4 Examples: ROOT package not found. AnaEx02 disabled.")
0022 endif()