forked from OSchip/llvm-project
[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:
parent
51c6e9445c
commit
3ed0ce458c
|
@ -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 *
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue