From 16a0723ec596bcea0eaf92d76525c9fc88024dc6 Mon Sep 17 00:00:00 2001 From: Danilo Piparo <danilo.piparo@cern.ch> Date: Thu, 30 Aug 2018 11:36:30 +0200 Subject: [PATCH] [RDF] Remove tutorials using rdf when we are on 32 bits --- tutorials/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tutorials/CMakeLists.txt b/tutorials/CMakeLists.txt index 1c067088dbd..e08375d2a88 100644 --- a/tutorials/CMakeLists.txt +++ b/tutorials/CMakeLists.txt @@ -197,7 +197,8 @@ if(root7) endif() if( CMAKE_SIZEOF_VOID_P EQUAL 4 ) - set(bits32_veto dataframe/*.C) + file(GLOB_RECURSE bits32_veto RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} dataframe/*.C) + list(APPEND bits32_veto tutorials/graphs/timeSeriesFromCSV.C) endif() #---These ones are disabled !!! ------------------------------------ @@ -409,6 +410,8 @@ if(ROOT_python_FOUND) set(bits32_veto_py dataframe/*.py) file(GLOB bits32_veto_py RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} dataframe/*.py) list(REMOVE_ITEM pytutorials ${bits32_veto_py}) + list(REMOVE_ITEM pytutorials tutorials/pyroot/pyroot002_TTreeAsMatrix.py) + list(REMOVE_ITEM pytutorials tutorials/pyroot/pyroot002_TTreeAsMatrix.py) endif() #---Python tutorials dependencies-------------------------------------- -- GitLab