diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:06:03 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | f717e1fccf2968ffeba36dc84e428abd4f8db5c0 (patch) | |
tree | f5cc998f263f96dd045f3b72ee031dc6845ace20 /Source/cmCommands.cxx | |
parent | f0ecb123981c6b383a55f7d75e023cf4310f2074 (diff) | |
download | CMake-f717e1fccf2968ffeba36dc84e428abd4f8db5c0.zip CMake-f717e1fccf2968ffeba36dc84e428abd4f8db5c0.tar.gz CMake-f717e1fccf2968ffeba36dc84e428abd4f8db5c0.tar.bz2 |
cmCreateTestSourceList: 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 1f6b1a2..f675a93 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -223,8 +223,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("add_subdirectory", cmAddSubDirectoryCommand); state->AddBuiltinCommand("add_test", cmAddTestCommand); state->AddBuiltinCommand("build_command", cmBuildCommand); - state->AddBuiltinCommand("create_test_sourcelist", - cm::make_unique<cmCreateTestSourceList>()); + state->AddBuiltinCommand("create_test_sourcelist", cmCreateTestSourceList); state->AddBuiltinCommand("define_property", cm::make_unique<cmDefinePropertyCommand>()); state->AddBuiltinCommand("enable_language", |