aboutsummaryrefslogtreecommitdiff
path: root/lldb/include/lldb/module.modulemap
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/module.modulemap')
-rw-r--r--lldb/include/lldb/module.modulemap6
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/include/lldb/module.modulemap b/lldb/include/lldb/module.modulemap
index e040df8f913b..7feea8ee99c3 100644
--- a/lldb/include/lldb/module.modulemap
+++ b/lldb/include/lldb/module.modulemap
@@ -49,12 +49,16 @@ module lldb_Host {
module SocketAddress { header "Host/SocketAddress.h" export * }
module Socket { header "Host/Socket.h" export * }
module StringConvert { textual header "Host/StringConvert.h" export * }
- module TaskPool { header "Host/TaskPool.h" export * }
module Terminal { header "Host/Terminal.h" export * }
module ThreadLauncher { header "Host/ThreadLauncher.h" export * }
module Time { header "Host/Time.h" export * }
module XML { header "Host/XML.h" export * }
+ module common {
+ umbrella "Host/common"
+ module * { export * }
+ }
+
export *
}