From 0f4f9677fcd988dba78583f93ebe0e7e266e7e98 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Mon, 8 Mar 2004 22:24:29 -0500 Subject: [PATCH] ENH: Add comment about RUNTIME_DIRECTORY --- Source/cmInstallTargetsCommand.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/cmInstallTargetsCommand.h b/Source/cmInstallTargetsCommand.h index b61fd05a0..02ff312f9 100644 --- a/Source/cmInstallTargetsCommand.h +++ b/Source/cmInstallTargetsCommand.h @@ -62,10 +62,12 @@ public: virtual const char* GetFullDocumentation() { return - " INSTALL_TARGETS( target target)\n" + " INSTALL_TARGETS( [RUNTIME_DIRECTORY dir] target target)\n" "Create rules to install the listed targets into the given directory. " "The directory is relative to the installation prefix, which " - "is stored in the variable CMAKE_INSTALL_PREFIX."; + "is stored in the variable CMAKE_INSTALL_PREFIX. If RUNTIME_DIRECTORY " + "specified, then on systems with special runtime files (Windows DLL), " + "the files will be copied to that directory."; } cmTypeMacro(cmInstallTargetsCommand, cmCommand);