summaryrefslogtreecommitdiff
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorRegina Pfeifer <regina@mailbox.org>2019-09-18 17:31:38 +0200
committerRegina Pfeifer <regina@mailbox.org>2019-09-21 05:11:44 +0200
commitd038beec21fde74977e6ce6604f7fc913066dad6 (patch)
treed5b279f84625e116ac82d730fa1707ec3139672c /Source/cmCommands.cxx
parentfdc3ba45832456fc17cff58850b16a02cee30e7c (diff)
downloadcmake-d038beec21fde74977e6ce6604f7fc913066dad6.tar.gz
cmIncludeDirectoryCommand: Port away from cmCommand
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index f569c2b824..a8a77c2ce6 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -231,8 +231,7 @@ void GetProjectCommands(cmState* state)
cmGetSourceFilePropertyCommand);
state->AddBuiltinCommand("get_target_property", cmGetTargetPropertyCommand);
state->AddBuiltinCommand("get_test_property", cmGetTestPropertyCommand);
- state->AddBuiltinCommand("include_directories",
- cm::make_unique<cmIncludeDirectoryCommand>());
+ state->AddBuiltinCommand("include_directories", cmIncludeDirectoryCommand);
state->AddBuiltinCommand("include_regular_expression",
cmIncludeRegularExpressionCommand);
state->AddBuiltinCommand("install", cm::make_unique<cmInstallCommand>());