Revision 0d47873e53e2cbf6980146fd2e657629890c15d6 authored by ferdymercury on 08 July 2024, 15:15:34 UTC, committed by Jonas Rembser on 12 July 2024, 11:20:32 UTC
1 parent 32ac7b2
Raw File
CMakeLists.txt
# Copyright (C) 1995-2021, 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(tmva)
add_subdirectory(tmvagui)

# Build pyMVA. Allows users to call python mva's from c++ ROOT/TMVA.
if(tmva-pymva)
   add_subdirectory(pymva)
endif()

# Build RMVA. Allows users to call R mva's from c++ ROOT/TMVA.
if(r OR tmva-rmva)
   add_subdirectory(rmva)
endif()

add_subdirectory(sofie)
#parser depends on protobuf 
#found if flag tmva-sofie is on
if (tmva-sofie)
   add_subdirectory(sofie_parsers)
endif()
back to top