Files
swift-mirror/test/Driver/Inputs/imported_modules/ComplexModuleGraph/module.modulemap
Varun Gandhi 5f6dd24ec9 [ModuleTrace] Add complex test case for module trace.
Overlay-overlay dependencies are incorrectly marked indirect when the
downstream overlay's underlying module imports the upstream overlay's
underlying module but the downstream overlay does not explicitly import
the upstream overlay.
2020-07-23 16:02:03 -07:00

23 lines
369 B
Plaintext

module CoreShip {
header "CoreShip.h"
export *
}
module CoreFuel {
umbrella header "CoreFuel/CoreFuel.h"
explicit module CoreFuelHydrogen {
header "CoreFuel/CoreFuelHydrogen.h"
export *
}
explicit module CoreFuelMethane {
header "CoreFuel/CoreFuelMethane.h"
export *
}
export *
}
module LaunchKit {
header "LaunchKit.h"
export *
}