diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:04:07 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | f0ecb123981c6b383a55f7d75e023cf4310f2074 (patch) | |
tree | 2383f60568a6c4e0fe224802456fae5eeefc6a21 /Source/cmCommands.cxx | |
parent | 9602bcfc62d50d7bb302b02ae3b1f9afe941bae7 (diff) | |
download | CMake-f0ecb123981c6b383a55f7d75e023cf4310f2074.zip CMake-f0ecb123981c6b383a55f7d75e023cf4310f2074.tar.gz CMake-f0ecb123981c6b383a55f7d75e023cf4310f2074.tar.bz2 |
cmBuildCommand: 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 dfe130e..1f6b1a2 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -222,7 +222,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("add_library", cmAddLibraryCommand); state->AddBuiltinCommand("add_subdirectory", cmAddSubDirectoryCommand); state->AddBuiltinCommand("add_test", cmAddTestCommand); - state->AddBuiltinCommand("build_command", cm::make_unique<cmBuildCommand>()); + state->AddBuiltinCommand("build_command", cmBuildCommand); state->AddBuiltinCommand("create_test_sourcelist", cm::make_unique<cmCreateTestSourceList>()); state->AddBuiltinCommand("define_property", |