File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 4343 -DCMAKE_CXX_FLAGS=" -fdiagnostics-color=always -Werror -Wno-error=deprecated-declarations " \
4444 -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
4545 -DUSE_EXTERNAL_CATCH2=AUTO \
46- -DENABLE_RNTUPLE=OFF \
46+ -DENABLE_RNTUPLE=ON \
4747 -DENABLE_DATASOURCE=ON \
4848 -G Ninja ..
4949 echo "::endgroup::"
Original file line number Diff line number Diff line change 3535 cd build
3636 cmake .. -DENABLE_SIO=ON \
3737 -DENABLE_JULIA=ON \
38- -DENABLE_RNTUPLE=OFF \
38+ -DENABLE_RNTUPLE=ON \
3939 -DENABLE_DATASOURCE=ON \
4040 -DCMAKE_CXX_STANDARD=20 \
4141 -DCMAKE_CXX_FLAGS=" -fdiagnostics-color=always -Werror "\
Original file line number Diff line number Diff line change @@ -81,13 +81,17 @@ set(root_components_needed RIO Tree)
8181set (root_min_version 6.28.04)
8282if (ENABLE_RNTUPLE)
8383 list (APPEND root_components_needed ROOTNTuple)
84- set (root_min_version 6.34 )
84+ set (root_min_version 6.32 )
8585endif ()
8686if (ENABLE_DATASOURCE)
8787 list (APPEND root_components_needed ROOTDataFrame)
8888endif ()
8989find_package (ROOT ${root_min_version} REQUIRED COMPONENTS ${root_components_needed} )
9090
91+ if (ENABLE_RNTUPLE AND ROOT_VERSION VERSION_LESS 6.34)
92+ message (WARNING "You are building RNTuple support against a version of ROOT that does not yet guarantee RNTuple backwards compatibility" )
93+ endif ()
94+
9195# ROOT_CXX_STANDARD was introduced in https://github.com/root-project/root/pull/6466
9296# before that it's an empty variable so we check if it's any number > 0
9397if (NOT DEFINED ROOT_CXX_STANDARD)
You can’t perform that action at this time.
0 commit comments