diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-07-25 15:31:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 18:42:19 (GMT) |
commit | 3e5eb45ec1fd977b709da6e36966b0b13d185214 (patch) | |
tree | ea0dbaf79cf4b964ba1cda005850fe16e269853c /Source/cmCommands.cxx | |
parent | 0d87f5d83e52ceb72f754331a9fd3d7189680297 (diff) | |
download | CMake-3e5eb45ec1fd977b709da6e36966b0b13d185214.zip CMake-3e5eb45ec1fd977b709da6e36966b0b13d185214.tar.gz CMake-3e5eb45ec1fd977b709da6e36966b0b13d185214.tar.bz2 |
cmCommand refactor: cmExecuteProcessCommand
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 0f73293..ea9bddb 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -123,8 +123,7 @@ void GetScriptingCommands(cmState* state) state->AddBuiltinCommand("configure_file", cmConfigureFileCommand); state->AddBuiltinCommand("continue", cmContinueCommand); state->AddBuiltinCommand("exec_program", cmExecProgramCommand); - state->AddBuiltinCommand("execute_process", - cm::make_unique<cmExecuteProcessCommand>()); + state->AddBuiltinCommand("execute_process", cmExecuteProcessCommand); state->AddBuiltinCommand("file", cmFileCommand); state->AddBuiltinCommand("find_file", cm::make_unique<cmFindFileCommand>()); state->AddBuiltinCommand("find_library", |