| 1289 | } |
| 1290 | |
| 1291 | bool cmTarget::IsAndroidGuiExecutable() const |
| 1292 | { |
| 1293 | return (this->GetType() == cmStateEnums::EXECUTABLE && |
| 1294 | this->impl->IsAndroid && this->GetPropertyAsBool("ANDROID_GUI")); |
| 1295 | } |
| 1296 | |
| 1297 | bool cmTarget::HasKnownObjectFileLocation(std::string* reason) const |
| 1298 | { |
no test coverage detected