浏览代码

ERR: Removed functions I just added. They don't belong here (yet?).

Brad King 24 年之前
父节点
当前提交
31ae187d0c
共有 2 个文件被更改,包括 0 次插入34 次删除
  1. 0 22
      Source/cmSystemTools.cxx
  2. 0 12
      Source/cmSystemTools.h

+ 0 - 22
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  
-}
-
-
-

+ 0 - 12
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;