diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-07-29 10:16:40 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-07-29 19:13:56 (GMT) |
commit | f71f7ce3f06a08ecf04ebc646537ab9de583cdc2 (patch) | |
tree | 36a567cd144827ed943b9c7119276a85d0f841b7 /Source/cmCommonTargetGenerator.cxx | |
parent | f6df9c2565ed00ec6f57c32a36dd451c60917f97 (diff) | |
download | CMake-f71f7ce3f06a08ecf04ebc646537ab9de583cdc2.zip CMake-f71f7ce3f06a08ecf04ebc646537ab9de583cdc2.tar.gz CMake-f71f7ce3f06a08ecf04ebc646537ab9de583cdc2.tar.bz2 |
cmStringAlgorithms: Move string functions to the new cmStringAlgorithms.h
This adds the `cmStringAlgorithms.h` header and moves all string functions
from `cmAlgorithms.h` to `cmStringAlgorithms.h`.
Diffstat (limited to 'Source/cmCommonTargetGenerator.cxx')
-rw-r--r-- | Source/cmCommonTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommonTargetGenerator.cxx b/Source/cmCommonTargetGenerator.cxx index 66250f3..61880c2 100644 --- a/Source/cmCommonTargetGenerator.cxx +++ b/Source/cmCommonTargetGenerator.cxx @@ -6,7 +6,6 @@ #include <sstream> #include <utility> -#include "cmAlgorithms.h" #include "cmComputeLinkInformation.h" #include "cmGeneratorTarget.h" #include "cmGlobalCommonGenerator.h" @@ -17,6 +16,7 @@ #include "cmOutputConverter.h" #include "cmSourceFile.h" #include "cmStateTypes.h" +#include "cmStringAlgorithms.h" cmCommonTargetGenerator::cmCommonTargetGenerator(cmGeneratorTarget* gt) : GeneratorTarget(gt) |