diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:15:29 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | 06a2e764f0f088a212e20b85e364b5621ef639fe (patch) | |
tree | 9ad643d2af13c967973b1e66ecc5393c60fbd918 /Source/cmCommands.cxx | |
parent | b46970cfe9e0c96a9794acb49fc580565bcd6e91 (diff) | |
download | CMake-06a2e764f0f088a212e20b85e364b5621ef639fe.zip CMake-06a2e764f0f088a212e20b85e364b5621ef639fe.tar.gz CMake-06a2e764f0f088a212e20b85e364b5621ef639fe.tar.bz2 |
cmIncludeExternalMSProjectCommand: Port away from cmCommand
Ref: #19499
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 2bdddc9..a82559d 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -281,9 +281,8 @@ void GetProjectCommands(cmState* state) cmAuxSourceDirectoryCommand); state->AddBuiltinCommand("export", cm::make_unique<cmExportCommand>()); state->AddBuiltinCommand("fltk_wrap_ui", cmFLTKWrapUICommand); - state->AddBuiltinCommand( - "include_external_msproject", - cm::make_unique<cmIncludeExternalMSProjectCommand>()); + state->AddBuiltinCommand("include_external_msproject", + cmIncludeExternalMSProjectCommand); state->AddBuiltinCommand("install_programs", cm::make_unique<cmInstallProgramsCommand>()); state->AddBuiltinCommand("add_link_options", cmAddLinkOptionsCommand); |