|
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 *
|
|
}
|
|
}
|
|
}
|