2011-11-18 06:09:43 +08:00
|
|
|
framework module DependsOnModule {
|
2011-12-09 02:00:48 +08:00
|
|
|
umbrella header "DependsOnModule.h"
|
2011-11-18 06:09:43 +08:00
|
|
|
header "other.h"
|
2011-12-06 06:27:44 +08:00
|
|
|
module * {
|
|
|
|
export *
|
|
|
|
}
|
2011-12-31 12:05:44 +08:00
|
|
|
explicit module CXX {
|
|
|
|
requires cplusplus
|
|
|
|
header "cxx_other.h"
|
|
|
|
}
|
2013-10-29 06:18:19 +08:00
|
|
|
explicit module NotCXX {
|
|
|
|
requires !cplusplus
|
|
|
|
header "not_cxx.h"
|
|
|
|
}
|
|
|
|
explicit module NotObjC {
|
|
|
|
requires !objc
|
|
|
|
header "not_objc.h"
|
|
|
|
}
|
2011-12-31 12:05:44 +08:00
|
|
|
|
2011-12-07 01:16:41 +08:00
|
|
|
explicit framework module SubFramework {
|
2011-12-09 02:00:48 +08:00
|
|
|
umbrella header "SubFramework.h"
|
2011-12-07 01:34:58 +08:00
|
|
|
|
|
|
|
module * {
|
|
|
|
export *
|
|
|
|
}
|
2011-12-07 01:16:41 +08:00
|
|
|
}
|
2011-11-18 06:09:43 +08:00
|
|
|
}
|