diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-07-01 20:55:25 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-07-02 14:40:02 (GMT) |
commit | 83498d413530570f7ab9affee5b8301c888bf91e (patch) | |
tree | 08f4c2ce8a7ec31b8061369a4113af29fe504f33 /Source/cmMakefile.h | |
parent | f1fcbe3fdedb0d04fe89423331c0f2789bfe911e (diff) | |
download | CMake-83498d413530570f7ab9affee5b8301c888bf91e.zip CMake-83498d413530570f7ab9affee5b8301c888bf91e.tar.gz CMake-83498d413530570f7ab9affee5b8301c888bf91e.tar.bz2 |
Store system include directories in the cmTarget.
Entries from the cmMakefile are processed and maintained similarly
to other include directories. The include_directories(SYSTEM)
signature affects all following targets, and all prior targets
in the same makefile.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 4297155..0822240 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -875,6 +875,9 @@ public: bool IsGeneratingBuildSystem(){ return this->GeneratingBuildSystem; } void SetGeneratingBuildSystem(){ this->GeneratingBuildSystem = true; } + std::set<cmStdString> const & GetSystemIncludeDirectories() const + { return this->SystemIncludeDirectories; } + protected: // add link libraries and directories to the target void AddGlobalLinkInformation(const char* name, cmTarget& target); |