diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-02-01 03:20:32 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-02-01 03:23:36 (GMT) |
commit | aeb1b2ae3d1c6774c2c4175aa566085697eefe49 (patch) | |
tree | 82bb77a82e57e889c3d106e28c10c92a82956cf2 /Source | |
parent | 29fb1367b6bbd379c5422eb5d0918a660e327a5f (diff) | |
download | CMake-aeb1b2ae3d1c6774c2c4175aa566085697eefe49.zip CMake-aeb1b2ae3d1c6774c2c4175aa566085697eefe49.tar.gz CMake-aeb1b2ae3d1c6774c2c4175aa566085697eefe49.tar.bz2 |
cmMakefileTargetGenerator: simplify string streaming
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 9df1af7..58cdb22 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1494,8 +1494,8 @@ void cmMakefileTargetGenerator::WriteTargetDependRules() /* clang-format off */ *this->InfoFileStream << "\n" - << "# Targets to which this target links.\n" - << "set(CMAKE_TARGET_LINKED_INFO_FILES\n"; + "# Targets to which this target links which contain Fortran sources.\n" + "set(CMAKE_TARGET_LINKED_INFO_FILES\n"; /* clang-format on */ std::vector<std::string> dirs = this->GetLinkedTargetDirectories(this->GetConfigName()); |