diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:14:27 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | b46970cfe9e0c96a9794acb49fc580565bcd6e91 (patch) | |
tree | f0580289806fbdf792dfd4b68e27acc332b8a644 /Source/cmCommands.cxx | |
parent | 0b95c64e43e5f60ee9c60570f359a40e4e882096 (diff) | |
download | CMake-b46970cfe9e0c96a9794acb49fc580565bcd6e91.zip CMake-b46970cfe9e0c96a9794acb49fc580565bcd6e91.tar.gz CMake-b46970cfe9e0c96a9794acb49fc580565bcd6e91.tar.bz2 |
cmGetTestPropertyCommand: 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 9916282..2bdddc9 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -230,8 +230,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("get_source_file_property", cmGetSourceFilePropertyCommand); state->AddBuiltinCommand("get_target_property", cmGetTargetPropertyCommand); - state->AddBuiltinCommand("get_test_property", - cm::make_unique<cmGetTestPropertyCommand>()); + state->AddBuiltinCommand("get_test_property", cmGetTestPropertyCommand); state->AddBuiltinCommand("include_directories", cm::make_unique<cmIncludeDirectoryCommand>()); state->AddBuiltinCommand( |