summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-08-17 14:46:32 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-08-17 14:46:32 (GMT)
commit29593b79a236f9bd6653ed0ab874444ae4f38f00 (patch)
treed992109374b95f30203572a518d11ae74c993719 /Source/cmTarget.cxx
parentc700d11d259af9c00680321804669fadbe378a22 (diff)
parenta2af850ba6dbee7797484ec5f6696525123023fc (diff)
downloadCMake-29593b79a236f9bd6653ed0ab874444ae4f38f00.zip
CMake-29593b79a236f9bd6653ed0ab874444ae4f38f00.tar.gz
CMake-29593b79a236f9bd6653ed0ab874444ae4f38f00.tar.bz2
Merge topic 'include-what-you-use'
a2af850b fix a batch of include-what-you-use violations
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx12
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 8476538..5681885 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -12,21 +12,25 @@
#include "cmTarget.h"
#include "cmAlgorithms.h"
-#include "cmComputeLinkInformation.h"
#include "cmGeneratorExpression.h"
-#include "cmGeneratorExpressionDAGChecker.h"
+#include "cmGeneratorTarget.h"
#include "cmGlobalGenerator.h"
#include "cmListFileCache.h"
#include "cmMakefile.h"
#include "cmOutputConverter.h"
+#include "cmProperty.h"
#include "cmSourceFile.h"
+#include "cmSourceFileLocation.h"
+#include "cmSystemTools.h"
#include "cmake.h"
+
+#include <algorithm>
#include <assert.h>
#include <cmsys/RegularExpression.hxx>
-#include <errno.h>
#include <map>
#include <set>
-#include <stdlib.h> // required for atof
+#include <sstream>
+#include <string.h>
#if defined(CMake_HAVE_CXX_UNORDERED_SET)
#include <unordered_set>