diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:20:35 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | b85407ae76951649907e8e5675fe17d65dfd5457 (patch) | |
tree | a766e8d484a55b0594d055565188cc3d08689c2a /Source/cmCommands.cxx | |
parent | d55319c01d5482ff31166750717252e1b49f1e69 (diff) | |
download | CMake-b85407ae76951649907e8e5675fe17d65dfd5457.zip CMake-b85407ae76951649907e8e5675fe17d65dfd5457.tar.gz CMake-b85407ae76951649907e8e5675fe17d65dfd5457.tar.bz2 |
cmInstallTargetsCommand: 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 21a007c..cb1f62b 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -237,8 +237,7 @@ void GetProjectCommands(cmState* state) cmIncludeRegularExpressionCommand); state->AddBuiltinCommand("install", cm::make_unique<cmInstallCommand>()); state->AddBuiltinCommand("install_files", cmInstallFilesCommand); - state->AddBuiltinCommand("install_targets", - cm::make_unique<cmInstallTargetsCommand>()); + state->AddBuiltinCommand("install_targets", cmInstallTargetsCommand); state->AddBuiltinCommand("link_directories", cm::make_unique<cmLinkDirectoriesCommand>()); state->AddBuiltinCommand("project", cm::make_unique<cmProjectCommand>()); |