diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-07-25 14:49:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 18:42:19 (GMT) |
commit | 01949a02df765cc4ad273b6163622f55d4f569ca (patch) | |
tree | 7de40eb16522085d052db75997f9bcd197262f05 /Source/cmCommands.cxx | |
parent | dc629b5d97cd5486b2b0b385680a163e594922ae (diff) | |
download | CMake-01949a02df765cc4ad273b6163622f55d4f569ca.zip CMake-01949a02df765cc4ad273b6163622f55d4f569ca.tar.gz CMake-01949a02df765cc4ad273b6163622f55d4f569ca.tar.bz2 |
cmCommand refactor: cmConfigureFileCommand
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 996ce97..3e7fa72 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -120,8 +120,7 @@ void GetScriptingCommands(cmState* state) state->AddBuiltinCommand("cmake_minimum_required", cmCMakeMinimumRequired); state->AddBuiltinCommand("cmake_policy", cm::make_unique<cmCMakePolicyCommand>()); - state->AddBuiltinCommand("configure_file", - cm::make_unique<cmConfigureFileCommand>()); + state->AddBuiltinCommand("configure_file", cmConfigureFileCommand); state->AddBuiltinCommand("continue", cm::make_unique<cmContinueCommand>()); state->AddBuiltinCommand("exec_program", cm::make_unique<cmExecProgramCommand>()); |