================ @@ -3,7 +3,7 @@ add_subdirectory(Basic) if(CLANG_ENABLE_CIR) add_subdirectory(CIR) endif() -add_subdirectory(Driver) ---------------- naveen-seth wrote:
This is intentional. In `clang/include/clang/`, `CMakeLists.txt` files are only used for TableGen targets. `clang/include/clang/Driver` had a single TableGen target, and this patch moves that input and its `CMakeLists.txt` to `clang/include/clang/Options`, so we switch to `add_subdirectory(Options)`. https://github.com/llvm/llvm-project/pull/163659 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
