[K/N][KT-39120] Build platform libraries with -fmodules

Merge-request: KT-MR-8175
Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
Vladimir Sukharev
2023-01-13 07:33:42 +00:00
committed by Space Team
parent d85b23ebb9
commit 45de88abae
35 changed files with 302 additions and 58 deletions
@@ -0,0 +1,6 @@
#include <Foundation/NSObjCRuntime.h>
typedef NS_ENUM (int, ForwardEnumPOD) { // There was forward definition of this enum in another module `forwardEnum1`
Value1POD,
Value2POD
};
@@ -0,0 +1,6 @@
framework module forwardEnum2 {
umbrella header "forwardEnum2.h"
export *
module * { export * }
}