diff options
author | Will Schroeder <will.schroeder@kitware.com> | 2001-01-12 19:35:15 (GMT) |
---|---|---|
committer | Will Schroeder <will.schroeder@kitware.com> | 2001-01-12 19:35:15 (GMT) |
commit | cacd6d160410660bcbc27f02b267833448c1eef1 (patch) | |
tree | 6162a797c69ca34936d8e1a34e296064435b0424 /Source/cmLinkDirectoriesRule.h | |
parent | 85d16dbd3568f2d21c2fc94284a33b093358ef4a (diff) | |
download | CMake-cacd6d160410660bcbc27f02b267833448c1eef1.zip CMake-cacd6d160410660bcbc27f02b267833448c1eef1.tar.gz CMake-cacd6d160410660bcbc27f02b267833448c1eef1.tar.bz2 |
ENH:Tweaks to dump documentation
Diffstat (limited to 'Source/cmLinkDirectoriesRule.h')
-rw-r--r-- | Source/cmLinkDirectoriesRule.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLinkDirectoriesRule.h b/Source/cmLinkDirectoriesRule.h index b303187..a46c395 100644 --- a/Source/cmLinkDirectoriesRule.h +++ b/Source/cmLinkDirectoriesRule.h @@ -64,7 +64,7 @@ public: /** * Succinct documentation. */ - virtual const char* TerseDocumentation() + virtual const char* GetTerseDocumentation() { return "Specify link directories."; } @@ -72,11 +72,11 @@ public: /** * More documentation. */ - virtual const char* FullDocumentation() + virtual const char* GetFullDocumentation() { return - "Specify the paths to the libraries that will be linked in.\n" "LINK_DIRECTORIES(directory1 directory2 ...)\n" + "Specify the paths to the libraries that will be linked in.\n" "The directories can use built in definitions like \n" "CMAKE_BINARY_DIR and CMAKE_SOURCE_DIR."; } |