summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-07-01 20:28:26 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-07-02 14:40:02 (GMT)
commitf1fcbe3fdedb0d04fe89423331c0f2789bfe911e (patch)
treefafa4caa5f9329d8e5dedad0d27d1cf18dde7c2f /Source/cmake.cxx
parent2679a34a943cddb61f816299476f15997f9b5980 (diff)
downloadCMake-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/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index fcec068..592b5ec 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -612,7 +612,7 @@ bool cmake::FindPackage(const std::vector<std::string>& args)
std::vector<std::string> includeDirs;
cmSystemTools::ExpandListArgument(includes, includeDirs);
- std::string includeFlags = lg->GetIncludeFlags(includeDirs,
+ std::string includeFlags = lg->GetIncludeFlags(includeDirs, 0,
language.c_str(), false);
std::string definitions = mf->GetSafeDefinition("PACKAGE_DEFINITIONS");