summaryrefslogtreecommitdiff
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorGabor Bencze <b.gabor98@gmail.com>2019-08-04 18:39:45 +0200
committerBrad King <brad.king@kitware.com>2019-08-20 14:42:20 -0400
commitcfc7854ef07369d6fb614a4483543afaf72a5208 (patch)
treefb8ab8ed163cb4dd52bd6bcef559d03657d43d0a /Source/cmCommands.cxx
parent71724633a24fccfdf3d56a19176d8afe637be843 (diff)
downloadcmake-cfc7854ef07369d6fb614a4483543afaf72a5208.tar.gz
cmCommand refactor: CmMessageCommand
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 68122af46f..c9a192aab3 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -149,7 +149,7 @@ void GetScriptingCommands(cmState* state)
state->AddBuiltinCommand("make_directory", cmMakeDirectoryCommand);
state->AddBuiltinCommand("mark_as_advanced", cmMarkAsAdvancedCommand);
state->AddBuiltinCommand("math", cmMathCommand);
- state->AddBuiltinCommand("message", cm::make_unique<cmMessageCommand>());
+ state->AddBuiltinCommand("message", cmMessageCommand);
state->AddBuiltinCommand("option", cm::make_unique<cmOptionCommand>());
state->AddBuiltinCommand("cmake_parse_arguments",
cm::make_unique<cmParseArgumentsCommand>());