diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-08 21:35:01 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-22 18:25:47 (GMT) |
commit | c7b39d06f9b1b5843682f52992634c8dad22aece (patch) | |
tree | d5ef225eb45637c58ad88be0a14697ceae227a35 /Source/cmTarget.h | |
parent | b2de25adeda1c37c8d626432df25fce7cd2ab032 (diff) | |
download | CMake-c7b39d06f9b1b5843682f52992634c8dad22aece.zip CMake-c7b39d06f9b1b5843682f52992634c8dad22aece.tar.gz CMake-c7b39d06f9b1b5843682f52992634c8dad22aece.tar.bz2 |
cmMakefile: Split accessors for include directories and origins.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index ba3bc5a..f9bcb05 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -572,7 +572,8 @@ public: std::vector<std::string> GetIncludeDirectories( const std::string& config, const std::string& language) const; - void InsertInclude(const cmValueWithOrigin &entry, + void InsertInclude(std::string const& entry, + cmListFileBacktrace const& bt, bool before = false); void InsertCompileOption(std::string const& entry, cmListFileBacktrace const& bt, |