diff options
author | Brad King <brad.king@kitware.com> | 2018-10-29 15:45:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-10-29 15:45:49 (GMT) |
commit | 44cef5fd9204dab2872ca87ed3c56947218aeb75 (patch) | |
tree | c6ff7f681a497e9e3ba9079868e2a4616853741b /Source/cmCommands.cxx | |
parent | 97624af75125a6d6ad2fcc181fe8645bf1abfb5f (diff) | |
parent | 50572d638b3903f2c2af636dcfe9d3765fd87a7c (diff) | |
download | CMake-44cef5fd9204dab2872ca87ed3c56947218aeb75.zip CMake-44cef5fd9204dab2872ca87ed3c56947218aeb75.tar.gz CMake-44cef5fd9204dab2872ca87ed3c56947218aeb75.tar.bz2 |
Merge branch 'set_directory_properties-script-mode' into release-3.13
Merge-request: !2544
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 873372f..63c5397 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -151,6 +151,8 @@ void GetScriptingCommands(cmState* state) state->AddBuiltinCommand("separate_arguments", new cmSeparateArgumentsCommand); state->AddBuiltinCommand("set", new cmSetCommand); + state->AddBuiltinCommand("set_directory_properties", + new cmSetDirectoryPropertiesCommand); state->AddBuiltinCommand("set_property", new cmSetPropertyCommand); state->AddBuiltinCommand("site_name", new cmSiteNameCommand); state->AddBuiltinCommand("string", new cmStringCommand); @@ -240,8 +242,6 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("install_targets", new cmInstallTargetsCommand); state->AddBuiltinCommand("link_directories", new cmLinkDirectoriesCommand); state->AddBuiltinCommand("project", new cmProjectCommand); - state->AddBuiltinCommand("set_directory_properties", - new cmSetDirectoryPropertiesCommand); state->AddBuiltinCommand("set_source_files_properties", new cmSetSourceFilesPropertiesCommand); state->AddBuiltinCommand("set_target_properties", |