[lldb] Put Host/common headers in a module

This directory escaped the modularization effort it seems. Just adding
this to the Host module along with the other common headers, which should
make this code less likely to break under modules and speed up compilation.
This commit is contained in:
Raphael Isemann 2020-02-19 10:47:37 +01:00
parent 51c6e9445c
commit 3ed0ce458c
1 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,11 @@ module lldb_Host {
module Time { header "Host/Time.h" export * }
module XML { header "Host/XML.h" export * }
module common {
umbrella "Host/common"
module * { export * }
}
export *
}