mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[interop] add an option to emit C++ header interface for a module
This commit is contained in:
@@ -467,6 +467,12 @@ bool FrontendInputsAndOutputs::hasObjCHeaderOutputPath() const {
|
||||
return outs.ObjCHeaderOutputPath;
|
||||
});
|
||||
}
|
||||
bool FrontendInputsAndOutputs::hasCxxHeaderOutputPath() const {
|
||||
return hasSupplementaryOutputPath(
|
||||
[](const SupplementaryOutputPaths &outs) -> const std::string & {
|
||||
return outs.CxxHeaderOutputPath;
|
||||
});
|
||||
}
|
||||
bool FrontendInputsAndOutputs::hasLoadedModuleTracePath() const {
|
||||
return hasSupplementaryOutputPath(
|
||||
[](const SupplementaryOutputPaths &outs) -> const std::string & {
|
||||
|
||||
Reference in New Issue
Block a user