diff options
author | Stephen Kelly <steveire@gmail.com> | 2011-12-04 15:32:13 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-02-22 11:31:49 (GMT) |
commit | a4d5f7b9b270d3fa85e8a0a1608c4205dff744d9 (patch) | |
tree | a310848179c4f7c1a069e2d315d2f56bfdbf2067 /Source/cmTarget.h | |
parent | 8adaee2b0b2651cfd93bb4a915d11bdd4cba1b51 (diff) | |
download | CMake-a4d5f7b9b270d3fa85e8a0a1608c4205dff744d9.zip CMake-a4d5f7b9b270d3fa85e8a0a1608c4205dff744d9.tar.gz CMake-a4d5f7b9b270d3fa85e8a0a1608c4205dff744d9.tar.bz2 |
Add API to get the ordered includes for a target.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 59f0184..dfed499 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -458,6 +458,9 @@ public: directory. */ bool UsesDefaultOutputDir(const char* config, bool implib); + /** Get the include directories for this target. */ + std::vector<std::string> GetIncludeDirectories(); + private: /** * A list of direct dependencies. Use in conjunction with DependencyMap. |