26 lines
707 B
CMake
26 lines
707 B
CMake
#------------------------------------------------------------------------------
|
|
# CMakeLists.txt
|
|
# Package: Geant4.src.G4visualization
|
|
#------------------------------------------------------------------------------
|
|
|
|
add_subdirectory(FukuiRenderer)
|
|
add_subdirectory(HepRep)
|
|
add_subdirectory(RayTracer)
|
|
add_subdirectory(Tree)
|
|
add_subdirectory(VRML)
|
|
add_subdirectory(XXX)
|
|
add_subdirectory(externals)
|
|
add_subdirectory(gMocren)
|
|
add_subdirectory(management)
|
|
add_subdirectory(modeling)
|
|
|
|
# OpenGL is optional depending on user selection
|
|
if(GEANT4_USE_OPENGL)
|
|
add_subdirectory(OpenGL)
|
|
endif()
|
|
|
|
# OpenInventor is optional depending on user selection
|
|
if(GEANT4_USE_INVENTOR)
|
|
add_subdirectory(OpenInventor)
|
|
endif()
|