diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:22:50 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | 56bfb8de5d1ddc3a499b03be8ae75c9832b6f878 (patch) | |
tree | 70ef754b6dc238d2245eb69c1615203679f8c22c /Source/cmCommands.cxx | |
parent | 83b3f76a3b13ffe2d8bdf3f67c20e36e22a6955f (diff) | |
download | CMake-56bfb8de5d1ddc3a499b03be8ae75c9832b6f878.zip CMake-56bfb8de5d1ddc3a499b03be8ae75c9832b6f878.tar.gz CMake-56bfb8de5d1ddc3a499b03be8ae75c9832b6f878.tar.bz2 |
cmQTWrapCPPCommand: 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 ed6d24c..79e91b3 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -289,8 +289,7 @@ void GetProjectCommands(cmState* state) cm::make_unique<cmTargetLinkDirectoriesCommand>()); state->AddBuiltinCommand("load_cache", cm::make_unique<cmLoadCacheCommand>()); - state->AddBuiltinCommand("qt_wrap_cpp", - cm::make_unique<cmQTWrapCPPCommand>()); + state->AddBuiltinCommand("qt_wrap_cpp", cmQTWrapCPPCommand); state->AddBuiltinCommand("qt_wrap_ui", cm::make_unique<cmQTWrapUICommand>()); state->AddBuiltinCommand("remove_definitions", cm::make_unique<cmRemoveDefinitionsCommand>()); |