diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-18 15:31:38 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-21 03:11:44 (GMT) |
commit | d038beec21fde74977e6ce6604f7fc913066dad6 (patch) | |
tree | d5b279f84625e116ac82d730fa1707ec3139672c /Source/cmCommands.cxx | |
parent | fdc3ba45832456fc17cff58850b16a02cee30e7c (diff) | |
download | CMake-d038beec21fde74977e6ce6604f7fc913066dad6.zip CMake-d038beec21fde74977e6ce6604f7fc913066dad6.tar.gz CMake-d038beec21fde74977e6ce6604f7fc913066dad6.tar.bz2 |
cmIncludeDirectoryCommand: 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 f569c2b..a8a77c2 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>()); |