diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-04 17:05:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 18:42:20 (GMT) |
commit | 2a9299782ece0e2c5f990fcab2162d141aedb833 (patch) | |
tree | 59efb7f814308fb9bd2c7c27db0ef74a628e0e31 /Source/cmCommands.cxx | |
parent | d780822da61afb5fd3014f7e15c68eb2eb0754c3 (diff) | |
download | CMake-2a9299782ece0e2c5f990fcab2162d141aedb833.zip CMake-2a9299782ece0e2c5f990fcab2162d141aedb833.tar.gz CMake-2a9299782ece0e2c5f990fcab2162d141aedb833.tar.bz2 |
cmCommand refactor: cmSeparateArgumentsCommand
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 406954a..c23a9ca 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -153,8 +153,7 @@ void GetScriptingCommands(cmState* state) state->AddBuiltinCommand("option", cmOptionCommand); state->AddBuiltinCommand("cmake_parse_arguments", cmParseArgumentsCommand); state->AddBuiltinCommand("return", cmReturnCommand); - state->AddBuiltinCommand("separate_arguments", - cm::make_unique<cmSeparateArgumentsCommand>()); + state->AddBuiltinCommand("separate_arguments", cmSeparateArgumentsCommand); state->AddBuiltinCommand("set", cm::make_unique<cmSetCommand>()); state->AddBuiltinCommand("set_directory_properties", cm::make_unique<cmSetDirectoryPropertiesCommand>()); |