| 289 | } |
| 290 | |
| 291 | std::string cmCommonTargetGenerator::GetAIXExports(std::string const&) |
| 292 | { |
| 293 | std::string aixExports; |
| 294 | if (this->GeneratorTarget->IsAIX()) { |
| 295 | if (cmValue exportAll = |
| 296 | this->GeneratorTarget->GetProperty("AIX_EXPORT_ALL_SYMBOLS")) { |
| 297 | if (exportAll.IsOff()) { |
| 298 | aixExports = "-n"; |
| 299 | } |
| 300 | } |
| 301 | } |
| 302 | return aixExports; |
| 303 | } |
| 304 | |
| 305 | void cmCommonTargetGenerator::AppendOSXVerFlag(std::string& flags, |
| 306 | std::string const& lang, |
no test coverage detected