| 50 | } |
| 51 | |
| 52 | void cmExportBuildAndroidMKGenerator::GenerateImportTargetCode( |
| 53 | std::ostream& os, cmGeneratorTarget const* target, |
| 54 | cmStateEnums::TargetType /*targetType*/) |
| 55 | { |
| 56 | std::string targetName = cmStrCat(this->Namespace, target->GetExportName()); |
| 57 | os << "include $(CLEAR_VARS)\n"; |
| 58 | os << "LOCAL_MODULE := "; |
| 59 | os << targetName << "\n"; |
| 60 | os << "LOCAL_SRC_FILES := "; |
| 61 | std::string const noConfig; // FIXME: What config to use here? |
| 62 | std::string path = |
| 63 | cmSystemTools::ConvertToOutputPath(target->GetFullPath(noConfig)); |
| 64 | os << path << "\n"; |
| 65 | } |
no test coverage detected