diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-07-01 20:28:26 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-07-02 14:40:02 (GMT) |
commit | f1fcbe3fdedb0d04fe89423331c0f2789bfe911e (patch) | |
tree | fafa4caa5f9329d8e5dedad0d27d1cf18dde7c2f /Source/cmGeneratorTarget.h | |
parent | 2679a34a943cddb61f816299476f15997f9b5980 (diff) | |
download | CMake-f1fcbe3fdedb0d04fe89423331c0f2789bfe911e.zip CMake-f1fcbe3fdedb0d04fe89423331c0f2789bfe911e.tar.gz CMake-f1fcbe3fdedb0d04fe89423331c0f2789bfe911e.tar.bz2 |
Add Target API to determine if an include is a system include.
The implementation can be modified later so that system includes
can be determined on a per-target basis.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 5f7019d..c0fd772 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -72,6 +72,8 @@ public: /** Get the include directories for this target. */ std::vector<std::string> GetIncludeDirectories(const char *config); + bool IsSystemIncludeDirectory(const char *dir, const char *config); + private: void ClassifySources(); void LookupObjectLibraries(); |