diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:18:01 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | fb5affe0859ae1bc07d059fc11cee3daca4d8780 (patch) | |
tree | a59c827bc5525ff0867fd4dea5e9668994dc30ee /Source/cmCommands.cxx | |
parent | 242d876d7b919fe6efb3a347dfa35a66e3ef58df (diff) | |
download | CMake-fb5affe0859ae1bc07d059fc11cee3daca4d8780.zip CMake-fb5affe0859ae1bc07d059fc11cee3daca4d8780.tar.gz CMake-fb5affe0859ae1bc07d059fc11cee3daca4d8780.tar.bz2 |
cmInstallFilesCommand: Port away from cmCommand
Ref: #19499
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 6f01bea..49f7c93 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -236,8 +236,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("include_regular_expression", cmIncludeRegularExpressionCommand); state->AddBuiltinCommand("install", cm::make_unique<cmInstallCommand>()); - state->AddBuiltinCommand("install_files", - cm::make_unique<cmInstallFilesCommand>()); + state->AddBuiltinCommand("install_files", cmInstallFilesCommand); state->AddBuiltinCommand("install_targets", cm::make_unique<cmInstallTargetsCommand>()); state->AddBuiltinCommand("link_directories", |