diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 08:12:09 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-12 16:16:17 (GMT) |
commit | e4c67981aca4fd736fd7503d9d105a0a6fb43828 (patch) | |
tree | b15fbda6ad2c6497a4409ae78542d302ea6c22e3 /Source/cmCommands.cxx | |
parent | 36b939db682a9405790bee76f95673eeaeb445b8 (diff) | |
download | CMake-e4c67981aca4fd736fd7503d9d105a0a6fb43828.zip CMake-e4c67981aca4fd736fd7503d9d105a0a6fb43828.tar.gz CMake-e4c67981aca4fd736fd7503d9d105a0a6fb43828.tar.bz2 |
cmGetSourceFilePropertyCommand: Port away from cmCommand
Ref: #19499
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 9ce4c14..ff19062 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -228,7 +228,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("enable_language", cmEnableLanguageCommand); state->AddBuiltinCommand("enable_testing", cmEnableTestingCommand); state->AddBuiltinCommand("get_source_file_property", - cm::make_unique<cmGetSourceFilePropertyCommand>()); + cmGetSourceFilePropertyCommand); state->AddBuiltinCommand("get_target_property", cm::make_unique<cmGetTargetPropertyCommand>()); state->AddBuiltinCommand("get_test_property", |