| 1926 | } |
| 1927 | |
| 1928 | std::string cmGeneratorTarget::GetEffectiveFolderName() const |
| 1929 | { |
| 1930 | std::string effectiveFolder; |
| 1931 | |
| 1932 | if (!this->GlobalGenerator->UseFolderProperty()) { |
| 1933 | return effectiveFolder; |
| 1934 | } |
| 1935 | |
| 1936 | cmValue targetFolder = this->GetProperty("FOLDER"); |
| 1937 | if (targetFolder) { |
| 1938 | effectiveFolder += *targetFolder; |
| 1939 | } |
| 1940 | |
| 1941 | return effectiveFolder; |
| 1942 | } |
| 1943 | |
| 1944 | cmGeneratorTarget::CompileInfo const* cmGeneratorTarget::GetCompileInfo( |
| 1945 | std::string const& config) const |
no test coverage detected