summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorRegina Pfeifer <regina@mailbox.org>2019-09-18 15:40:31 (GMT)
committerRegina Pfeifer <regina@mailbox.org>2019-09-21 03:15:26 (GMT)
commit1dd31297cad93b5b9a8fd1ab2b5bb9916ffe5d18 (patch)
treefc2c45cfc659cbbb91347798df2116a1fc0fa5a3 /Source/cmCommands.cxx
parentd5c63f073f290d4778426825e586240dca7ca0a6 (diff)
downloadCMake-1dd31297cad93b5b9a8fd1ab2b5bb9916ffe5d18.zip
CMake-1dd31297cad93b5b9a8fd1ab2b5bb9916ffe5d18.tar.gz
CMake-1dd31297cad93b5b9a8fd1ab2b5bb9916ffe5d18.tar.bz2
cmTargetLinkLibrariesCommand: Port away from cmCommand
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 6a91674..cc9448d 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -257,7 +257,7 @@ void GetProjectCommands(cmState* state)
"target_include_directories",
cm::make_unique<cmTargetIncludeDirectoriesCommand>());
state->AddBuiltinCommand("target_link_libraries",
- cm::make_unique<cmTargetLinkLibrariesCommand>());
+ cmTargetLinkLibrariesCommand);
state->AddBuiltinCommand("target_sources",
cm::make_unique<cmTargetSourcesCommand>());
state->AddBuiltinCommand("try_compile",