summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-21 21:53:15 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-21 21:53:15 (GMT)
commit242a236db4f8c8b1794cceaf6a97d66cc7cd8abe (patch)
treea09f4c8d7ca022df12286637ec9f1d31df2f6344 /Source/cmSystemTools.cxx
parentbda5baa566ffffeda6c2dad0d2df98bbff4ca966 (diff)
downloadCMake-242a236db4f8c8b1794cceaf6a97d66cc7cd8abe.zip
CMake-242a236db4f8c8b1794cceaf6a97d66cc7cd8abe.tar.gz
CMake-242a236db4f8c8b1794cceaf6a97d66cc7cd8abe.tar.bz2
adde changeDirectory
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 5d3864c..de181f0 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -906,6 +906,10 @@ bool cmSystemTools::FileIsDirectory(const char* name)
}
}
+int cmSystemTools::ChangeDirectory(const char *dir)
+{
+ return Chdir(dir);
+}
std::string cmSystemTools::GetCurrentWorkingDirectory()
{