diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-09 12:24:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 18:42:20 (GMT) |
commit | 7c83c192056536defb35df36acf753701a2e78a2 (patch) | |
tree | e1e3b96366105b9ceebebb0e78866c0277d06175 /Source/cmCommands.cxx | |
parent | 9413952c42d83fb10a70ee96e91a20c55c5f2edc (diff) | |
download | CMake-7c83c192056536defb35df36acf753701a2e78a2.zip CMake-7c83c192056536defb35df36acf753701a2e78a2.tar.gz CMake-7c83c192056536defb35df36acf753701a2e78a2.tar.bz2 |
cmCommand refactor: cmSetDirectoryPropertiesCommand
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 df61b4e..6a66c7b 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -155,7 +155,7 @@ void GetScriptingCommands(cmState* state) state->AddBuiltinCommand("separate_arguments", cmSeparateArgumentsCommand); state->AddBuiltinCommand("set", cmSetCommand); state->AddBuiltinCommand("set_directory_properties", - cm::make_unique<cmSetDirectoryPropertiesCommand>()); + cmSetDirectoryPropertiesCommand); state->AddBuiltinCommand("set_property", cm::make_unique<cmSetPropertyCommand>()); state->AddBuiltinCommand("site_name", cmSiteNameCommand); |