Returns the framework version of the current target. Only valid for bundles.
(self)
| 254 | return int(self.spec.get("ios_watch_app", 0)) != 0 |
| 255 | |
| 256 | def GetFrameworkVersion(self): |
| 257 | """Returns the framework version of the current target. Only valid for |
| 258 | bundles.""" |
| 259 | assert self._IsBundle() |
| 260 | return self.GetPerTargetSetting("FRAMEWORK_VERSION", default="A") |
| 261 | |
| 262 | def GetWrapperExtension(self): |
| 263 | """Returns the bundle extension (.app, .framework, .plugin, etc). Only |
no test coverage detected