From 66c939599c0945d1533aa6139d5ca347b1b660df Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Wed, 24 Jul 2024 18:57:31 -0600 Subject: [PATCH] AK: Add a clang modules module map --- AK/module.modulemap | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 AK/module.modulemap diff --git a/AK/module.modulemap b/AK/module.modulemap new file mode 100644 index 00000000000..01a47bb0fdc --- /dev/null +++ b/AK/module.modulemap @@ -0,0 +1,6 @@ +module AK [system] { + requires cplusplus + umbrella "." + + config_macros USING_AK_GLOBALLY +}