diff options
author | Brad King <brad.king@kitware.com> | 2019-12-18 14:31:53 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-12-18 14:32:03 (GMT) |
commit | 0607a50bb38590e5a47b7314c0bf0ad25187ae8f (patch) | |
tree | e69c3a85171d1b782e091411baca82a5ebc5cb23 /Source/cmNinjaTargetGenerator.cxx | |
parent | c507661ca07df2199bf63cedececfbaf582e0fd0 (diff) | |
parent | f7d12609f038a0e4e09f9a40fa081c4a4db3e56b (diff) | |
download | CMake-0607a50bb38590e5a47b7314c0bf0ad25187ae8f.zip CMake-0607a50bb38590e5a47b7314c0bf0ad25187ae8f.tar.gz CMake-0607a50bb38590e5a47b7314c0bf0ad25187ae8f.tar.bz2 |
Merge topic 'add-header-cmext-algorithm'
f7d12609f0 Refactoring: use append functions from cmext/algorithm
a38d04c076 Refactoring: introduce header cmext/algorithm with append functions
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4131
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index ee1163a..3f1dbe8 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -10,11 +10,11 @@ #include <utility> #include <cm/memory> +#include <cmext/algorithm> #include "cm_jsoncpp_value.h" #include "cm_jsoncpp_writer.h" -#include "cmAlgorithms.h" #include "cmComputeLinkInformation.h" #include "cmCustomCommandGenerator.h" #include "cmGeneratedFileStream.h" @@ -870,7 +870,7 @@ void cmNinjaTargetGenerator::WriteObjectBuildStatements( DependOnTargetOrdering); // Add order-only dependencies on other files associated with the target. - cmAppend(orderOnlyDeps, this->Configs[config].ExtraFiles); + cm::append(orderOnlyDeps, this->Configs[config].ExtraFiles); // Add order-only dependencies on custom command outputs. for (cmCustomCommand const* cc : this->Configs[config].CustomCommands) { |