summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-20 19:01:00 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-20 19:01:00 (GMT)
commit202600f95a2fe3c401e7c6ba64a3ce93e2143f88 (patch)
tree93d636f5451be1aa76e24ff3c4b8442fa8e91695 /Source/cmMakefile.cxx
parent571c483ad85a3e820d5ecfa0f4d682f7f678f154 (diff)
downloadCMake-202600f95a2fe3c401e7c6ba64a3ce93e2143f88.zip
CMake-202600f95a2fe3c401e7c6ba64a3ce93e2143f88.tar.gz
CMake-202600f95a2fe3c401e7c6ba64a3ce93e2143f88.tar.bz2
Add GetLocal on cmMakefile and on local builds do not perform tests
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 92fe82e..1a79b97 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -1421,3 +1421,8 @@ cmCacheManager *cmMakefile::GetCacheManager() const
{
return m_LocalGenerator->GetGlobalGenerator()->GetCMakeInstance()->GetCacheManager();
}
+
+bool cmMakefile::GetLocal() const
+{
+ return m_LocalGenerator->GetGlobalGenerator()->GetCMakeInstance()->GetLocal();
+}