diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-18 15:34:23 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-21 03:12:31 (GMT) |
commit | fcfec154acea01518aa436d76f576d7cfea65fa2 (patch) | |
tree | 386a007f6c63ac6bc34d24c4b2f2104a231ccf27 /Source/cmCommands.cxx | |
parent | d038beec21fde74977e6ce6604f7fc913066dad6 (diff) | |
download | CMake-fcfec154acea01518aa436d76f576d7cfea65fa2.zip CMake-fcfec154acea01518aa436d76f576d7cfea65fa2.tar.gz CMake-fcfec154acea01518aa436d76f576d7cfea65fa2.tar.bz2 |
cmLinkDirectoriesCommand: Port away from cmCommand
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index a8a77c2..aba092e 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -237,8 +237,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("install", cm::make_unique<cmInstallCommand>()); state->AddBuiltinCommand("install_files", cmInstallFilesCommand); state->AddBuiltinCommand("install_targets", cmInstallTargetsCommand); - state->AddBuiltinCommand("link_directories", - cm::make_unique<cmLinkDirectoriesCommand>()); + state->AddBuiltinCommand("link_directories", cmLinkDirectoriesCommand); state->AddBuiltinCommand("project", cm::make_unique<cmProjectCommand>()); state->AddBuiltinCommand("set_source_files_properties", cmSetSourceFilesPropertiesCommand); |