diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-18 15:38:07 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-21 03:14:05 (GMT) |
commit | 42e413bcbbd32cbae6705269ae0f7a0583819be9 (patch) | |
tree | b9f13f4221c34d45fd2bd1b5f064a6efe8d91370 /Source/cmCommands.cxx | |
parent | 77aa75b8dc76fce51973d6337473fb388b855ea4 (diff) | |
download | CMake-42e413bcbbd32cbae6705269ae0f7a0583819be9.zip CMake-42e413bcbbd32cbae6705269ae0f7a0583819be9.tar.gz CMake-42e413bcbbd32cbae6705269ae0f7a0583819be9.tar.bz2 |
cmSetTargetPropertiesCommand: Port away from cmCommand
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 d01972d..8e3a2cc 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -242,7 +242,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("set_source_files_properties", cmSetSourceFilesPropertiesCommand); state->AddBuiltinCommand("set_target_properties", - cm::make_unique<cmSetTargetPropertiesCommand>()); + cmSetTargetPropertiesCommand); state->AddBuiltinCommand("set_tests_properties", cmSetTestsPropertiesCommand); state->AddBuiltinCommand("subdirs", cmSubdirCommand); |