blob: 5a1cacaad2a3eadcf7a5090ae1d01571a50a9482 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
framework module DependsOnModule {
umbrella header "DependsOnModule.h"
header "other.h"
module * {
export *
}
explicit module CXX {
requires cplusplus
header "cxx_other.h"
}
explicit module NotCXX {
requires !cplusplus
header "not_cxx.h"
}
explicit module NotObjC {
requires !objc
header "not_objc.h"
}
explicit framework module SubFramework {
umbrella header "SubFramework.h"
module * {
export *
}
}
}
|