diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 14:28:59 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | 573cd4e4b43d8d3b75f6e7c420b5f833cdd2120e (patch) | |
tree | e45ae0fdfff920a55ccaffa486a92ae795e73cb5 /Source/cmCommands.cxx | |
parent | 95f23ea5d5a07da503f8e2ab9c52c82086cdcae4 (diff) | |
download | CMake-573cd4e4b43d8d3b75f6e7c420b5f833cdd2120e.zip CMake-573cd4e4b43d8d3b75f6e7c420b5f833cdd2120e.tar.gz CMake-573cd4e4b43d8d3b75f6e7c420b5f833cdd2120e.tar.bz2 |
cmSetTestsPropertiesCommand: 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 b627433..9fb07f2 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -246,7 +246,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("set_target_properties", cm::make_unique<cmSetTargetPropertiesCommand>()); state->AddBuiltinCommand("set_tests_properties", - cm::make_unique<cmSetTestsPropertiesCommand>()); + cmSetTestsPropertiesCommand); state->AddBuiltinCommand("subdirs", cm::make_unique<cmSubdirCommand>()); state->AddBuiltinCommand( "target_compile_definitions", |