diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 14:28:00 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | 95f23ea5d5a07da503f8e2ab9c52c82086cdcae4 (patch) | |
tree | 254ea3cd2162af097f82daab7980aa1c0d449585 /Source/cmCommands.cxx | |
parent | 706400d417e6435a442af2626a8430016e24aa9d (diff) | |
download | CMake-95f23ea5d5a07da503f8e2ab9c52c82086cdcae4.zip CMake-95f23ea5d5a07da503f8e2ab9c52c82086cdcae4.tar.gz CMake-95f23ea5d5a07da503f8e2ab9c52c82086cdcae4.tar.bz2 |
cmSetSourceFilesPropertiesCommand: Port away from cmCommand
Ref: #19499
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 03aed81..b627433 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -241,9 +241,8 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("link_directories", cm::make_unique<cmLinkDirectoriesCommand>()); state->AddBuiltinCommand("project", cm::make_unique<cmProjectCommand>()); - state->AddBuiltinCommand( - "set_source_files_properties", - cm::make_unique<cmSetSourceFilesPropertiesCommand>()); + state->AddBuiltinCommand("set_source_files_properties", + cmSetSourceFilesPropertiesCommand); state->AddBuiltinCommand("set_target_properties", cm::make_unique<cmSetTargetPropertiesCommand>()); state->AddBuiltinCommand("set_tests_properties", |