summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index d5de675..6216fde 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -486,25 +486,3 @@ void cmSystemTools::RemoveFile(const char* source)
{
unlink(source);
}
-
-
-const char* cmSystemTools::GetCMakeExecutableName()
-{
-#if defined(_WIN32) && !defined(__CYGWIN__)
- return "CMakeSetupCMD";
-#else
- return "CMakeBuildTargets";
-#endif
-}
-
-const char* cmSystemTools::GetCMakeExecutableOptions()
-{
-#if defined(_WIN32) && !defined(__CYGWIN__)
- return "-DSP";
-#else
- return "";
-#endif
-}
-
-
-