summaryrefslogtreecommitdiff
path: root/clang/test/Modules/Inputs/DependsOnModule.framework/module.map
blob: 2a3dd8038bd1c27ea1f2ab7ece500fed472af6b4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
framework module DependsOnModule {
  umbrella header "DependsOnModule.h"
  header "other.h"
  module * {
    export *
  }
  explicit module CXX {
    requires cplusplus
    header "cxx_other.h"
  }

  explicit framework module SubFramework {
    umbrella header "SubFramework.h"

    module * {
      export *
    }
  }
}