add features section in help msg

This commit is contained in:
silverweed 2024-11-12 13:36:57 +01:00
parent 17dcbd295e
commit 03192aa88e
2 changed files with 15 additions and 1 deletions

View file

@ -20,6 +20,20 @@ void print_help(const char *argv0)
"\n- (*) \"some extended info\" currently means the total uncompressed size of the pages and"
"\n their compression ratio."
"\n"
"\nFEATURES:"
"\n gfx: "
#ifdef RNT_NO_GFX
""
#else
""
#endif
"\n optimized: "
#ifndef NDEBUG
""
#else
""
#endif
"\n"
, argv0);
}

View file

@ -90,11 +90,11 @@ using ROOT::Experimental::Internal::RNTupleSerializer;
#include "str.cpp"
#include "tfile.cpp"
#include "rntuple.cpp"
#include "hover.cpp"
#include "render_term.cpp"
#include "argparse.cpp"
#ifndef RNT_NO_GFX
#include "hover.cpp"
#include "render.cpp"
#include "mainloop.cpp"
#endif // RNT_NO_GFX