diff options
Diffstat (limited to 'Source/cmCableCommand.cxx')
-rw-r--r-- | Source/cmCableCommand.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmCableCommand.cxx b/Source/cmCableCommand.cxx index 03e0656..396a0fe 100644 --- a/Source/cmCableCommand.cxx +++ b/Source/cmCableCommand.cxx @@ -81,23 +81,23 @@ void cmCableCommand::SetupCableData() // We must add a custom rule to cause the cable_config.xml to be re-built // when it is removed. Rebuilding it means re-running CMake. - std::string cMakeLists = "\""; - cMakeLists += m_Makefile->GetStartDirectory(); + std::string cMakeLists = m_Makefile->GetStartDirectory(); cMakeLists += "/"; - cMakeLists += "CMakeLists.txt\""; + cMakeLists += "CMakeLists.txt"; std::string command; #if defined(_WIN32) && !defined(__CYGWIN__) command = "\""; command += m_Makefile->GetHomeDirectory(); - command += "/CMake/Source/CMakeSetupCMD\" "; + command += "/CMake/Source/CMakeSetupCMD\" \""; command += cMakeLists; - command += " -DSP"; + command += "\" -DSP"; #else command = "\""; command += m_Makefile->GetHomeOutputDirectory(); - command += "/CMake/Source/CMakeBuildTargets\" "; + command += "/CMake/Source/CMakeBuildTargets\" \""; command += cMakeLists; + command += "\""; #endif command += " -H\""; command += m_Makefile->GetHomeDirectory(); |