How to compile only clang and clang-tidy (but none of the other clang-tools-extra)

I want to install clang and clang-tidy only. I am not interested in any other tools from clang-tools-extra. I can only find to build like the following option:
-DLLVM_ENABLE_PROJECTS=“clang;clang-tools-extra”

but this compiles a lot of other tools as well, like include-fixer. I do not want to build or install them. What should be the preferred way?

Other options I am using currently for completeness:
-DLLVM_ENABLE_RUNTIMES=“compiler-rt”
-DLLVM_ENABLE_LIBEDIT=OFF

I don’t think there is a way to not compiler the rest, and I don’t think it’s worth the effort to make that possible. The tools are really cheap to compile if you already compiled clang. Most of them consist of less than twenty tool-specific files. You can probably only install clang and clang-tidy with ninja install-clang install-clang-tidy if it’s important to you to not install the rest.