| 1831 | } |
| 1832 | |
| 1833 | bool cmGeneratorTarget::HaveWellDefinedOutputFiles() const |
| 1834 | { |
| 1835 | return this->GetType() == cmStateEnums::STATIC_LIBRARY || |
| 1836 | this->GetType() == cmStateEnums::SHARED_LIBRARY || |
| 1837 | this->GetType() == cmStateEnums::MODULE_LIBRARY || |
| 1838 | this->GetType() == cmStateEnums::OBJECT_LIBRARY || |
| 1839 | this->GetType() == cmStateEnums::EXECUTABLE; |
| 1840 | } |
| 1841 | |
| 1842 | std::string const* cmGeneratorTarget::GetExportMacro() const |
| 1843 | { |
no test coverage detected