LLDB.framework wants a copy these headers. With this change LLDB can easily glob for the list of files:
get_target_property(clang_include_dir clang-headers RUNTIME_OUTPUT_DIRECTORY) file(GLOB_RECURSE clang_vendor_headers RELATIVE ${clang_include_dir} "${clang_include_dir}/*")
By default RUNTIME_OUTPUT_DIRECTORY is unset for custom targets like clang-headers.
Not sure if there is a read&write property that matches the purpose better.
What do you think?