diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 14:29:52 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | a81e9a0ced25490d1384316834dff36a55d4e864 (patch) | |
tree | 4d121684847329f84c47831773ff61c0981b6cdf /Source/cmCommands.cxx | |
parent | 573cd4e4b43d8d3b75f6e7c420b5f833cdd2120e (diff) | |
download | CMake-a81e9a0ced25490d1384316834dff36a55d4e864.zip CMake-a81e9a0ced25490d1384316834dff36a55d4e864.tar.gz CMake-a81e9a0ced25490d1384316834dff36a55d4e864.tar.bz2 |
cmSubdirCommand: Port away from cmCommand
Ref: #19499
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 9fb07f2..38fcf5b 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -247,7 +247,7 @@ void GetProjectCommands(cmState* state) cm::make_unique<cmSetTargetPropertiesCommand>()); state->AddBuiltinCommand("set_tests_properties", cmSetTestsPropertiesCommand); - state->AddBuiltinCommand("subdirs", cm::make_unique<cmSubdirCommand>()); + state->AddBuiltinCommand("subdirs", cmSubdirCommand); state->AddBuiltinCommand( "target_compile_definitions", cm::make_unique<cmTargetCompileDefinitionsCommand>()); |