diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-18 15:39:47 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-21 03:14:42 (GMT) |
commit | d5c63f073f290d4778426825e586240dca7ca0a6 (patch) | |
tree | b75d7faa6aa811ac4dd22fc22cfc357b84adf308 /Source/cmCommands.cxx | |
parent | 42e413bcbbd32cbae6705269ae0f7a0583819be9 (diff) | |
download | CMake-d5c63f073f290d4778426825e586240dca7ca0a6.zip CMake-d5c63f073f290d4778426825e586240dca7ca0a6.tar.gz CMake-d5c63f073f290d4778426825e586240dca7ca0a6.tar.bz2 |
cmSourceGroupCommand: Port away from cmCommand
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 8e3a2cc..6a91674 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -288,8 +288,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("qt_wrap_cpp", cmQTWrapCPPCommand); state->AddBuiltinCommand("qt_wrap_ui", cmQTWrapUICommand); state->AddBuiltinCommand("remove_definitions", cmRemoveDefinitionsCommand); - state->AddBuiltinCommand("source_group", - cm::make_unique<cmSourceGroupCommand>()); + state->AddBuiltinCommand("source_group", cmSourceGroupCommand); state->AddDisallowedCommand( "export_library_dependencies", cmExportLibraryDependenciesCommand, |