Revision e1c1002a0964b7c585d7f6f5efcd5bda65950297 authored by Danilo Piparo on 15 September 2023, 12:14:32 UTC, committed by Danilo Piparo on 15 September 2023, 20:28:35 UTC
1 parent 12d8a75
Raw File
CMakeLists.txt
# Copyright (C) 1995-2019, Rene Brun and Fons Rademakers.
# All rights reserved.
#
# For the licensing terms see $ROOTSYS/LICENSE.
# For the list of contributors see $ROOTSYS/README/CREDITS.

add_subdirectory (geom)        # special CMakeLists.txt
add_subdirectory (geombuilder) # special CMakeLists.txt
add_subdirectory (geompainter) # special CMakeLists.txt

if(gdml)
  add_subdirectory(gdml)
  if(NOT gnuinstall)
    install(DIRECTORY gdml/ DESTINATION geom/gdml
            FILES_MATCHING PATTERN "*.py"
            PATTERN "inc" EXCLUDE
            PATTERN "src" EXCLUDE)
  endif()
endif()

if(vecgeom)
  add_subdirectory(vecgeom)
endif()

if(webgui AND root7)
  add_subdirectory(webviewer)
endif()

ROOT_ADD_TEST_SUBDIRECTORY(test)
back to top