summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmSystemTools.cxx22
-rw-r--r--Source/cmSystemTools.h12
2 files changed, 0 insertions, 34 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
-}
-
-
-
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index a0432c0..f872a2c 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -122,18 +122,6 @@ public:
static long int ModifiedTime(const char* filename);
-
- /**
- * Get the CMake executable name on the current platform. This will
- * be "CMakeBuildTargets" for unix, and "CMakeSetupCMD" for windows.
- */
- static const char* GetCMakeExecutableName();
-
- /**
- * Get the CMake executable options for the current platform. This will
- * be "" for unix, and "-DSP" for windows.
- */
- static const char* GetCMakeExecutableOptions();
private:
static bool s_ErrorOccured;