From ebf39cd306d23599d958c039ca15ed97fbe4256e Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 9 Apr 2012 08:53:32 -0400 Subject: [PATCH] Document behavior of multiple target_link_libraries calls (#13113) State explicitly that multiple calls append (rather than replace). --- Source/cmTargetLinkLibrariesCommand.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/cmTargetLinkLibrariesCommand.h b/Source/cmTargetLinkLibrariesCommand.h index be866c37f..63114d209 100644 --- a/Source/cmTargetLinkLibrariesCommand.h +++ b/Source/cmTargetLinkLibrariesCommand.h @@ -64,7 +64,8 @@ public: "Specify libraries or flags to use when linking a given target. " "The named must have been created in the current directory " "by a command such as add_executable or add_library. " - "The remaining arguments specify library names or flags." + "The remaining arguments specify library names or flags. " + "Repeated calls for the same append items in the order called." "\n" "If a library name matches that of another target in the project " "a dependency will automatically be added in the build system to make "