mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
ERR: Removed functions I just added. They don't belong here (yet?).
This commit is contained in:
parent
a8f9aa814e
commit
31ae187d0c
@ -486,25 +486,3 @@ void cmSystemTools::RemoveFile(const char* source)
|
|||||||
{
|
{
|
||||||
unlink(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
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -123,18 +123,6 @@ public:
|
|||||||
|
|
||||||
static long int ModifiedTime(const char* filename);
|
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:
|
private:
|
||||||
static bool s_ErrorOccured;
|
static bool s_ErrorOccured;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user