diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-09-16 08:03:42 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-09-19 13:32:09 (GMT) |
commit | 290e92ada86c5b74669be48ee901494ae8e48ee3 (patch) | |
tree | 7325c7513406bd1258892a5bfa0b5cbb69b079a1 /Source/cmTarget.cxx | |
parent | f9146f6b90d381a70bdb6a3c97742e3a53bb6235 (diff) | |
download | CMake-290e92ada86c5b74669be48ee901494ae8e48ee3.zip CMake-290e92ada86c5b74669be48ee901494ae8e48ee3.tar.gz CMake-290e92ada86c5b74669be48ee901494ae8e48ee3.tar.bz2 |
Move GetIncludeDirectories to cmGeneratorTarget.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 8241d75..5a47d17 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -4560,30 +4560,6 @@ std::string cmTarget::CheckCMP0004(std::string const& item) } //---------------------------------------------------------------------------- -std::vector<std::string> cmTarget::GetIncludeDirectories() -{ - std::vector<std::string> includes; - const char *prop = this->GetProperty("INCLUDE_DIRECTORIES"); - if(prop) - { - cmSystemTools::ExpandListArgument(prop, includes); - } - - std::set<std::string> uniqueIncludes; - std::vector<std::string> orderedAndUniqueIncludes; - for(std::vector<std::string>::const_iterator - li = includes.begin(); li != includes.end(); ++li) - { - if(uniqueIncludes.insert(*li).second) - { - orderedAndUniqueIncludes.push_back(*li); - } - } - - return orderedAndUniqueIncludes; -} - -//---------------------------------------------------------------------------- std::string cmTarget::GetFrameworkDirectory(const char* config) { std::string fpath; |