diff options
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index ca1cc5d..d5de675 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -487,3 +487,24 @@ 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 +} + + + |