mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 14:40:26 -06:00
ENH: Use generated file stream for files
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
#include "cmMakefile.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmGeneratedFileStream.h"
|
||||
|
||||
//#include <cmsys/RegularExpression.hxx>
|
||||
#include <cmsys/Process.h>
|
||||
@@ -115,7 +116,6 @@ cmCTestScriptHandler::~cmCTestScriptHandler()
|
||||
{
|
||||
delete m_CMake;
|
||||
}
|
||||
m_CMake = 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -642,7 +642,7 @@ int cmCTestScriptHandler::RunConfigurationDashboard()
|
||||
{
|
||||
std::string cacheFile = m_BinaryDir;
|
||||
cacheFile += "/CMakeCache.txt";
|
||||
std::ofstream fout(cacheFile.c_str());
|
||||
cmGeneratedFileStream fout(cacheFile.c_str());
|
||||
if(!fout)
|
||||
{
|
||||
this->RestoreBackupDirectories();
|
||||
@@ -690,7 +690,7 @@ int cmCTestScriptHandler::RunConfigurationDashboard()
|
||||
std::cerr << "Write CMake output to file: " << cmakeOutputFile.c_str()
|
||||
<< std::endl;
|
||||
}
|
||||
std::ofstream fout(cmakeOutputFile.c_str());
|
||||
cmGeneratedFileStream fout(cmakeOutputFile.c_str());
|
||||
if ( fout )
|
||||
{
|
||||
fout << output.c_str();
|
||||
|
||||
Reference in New Issue
Block a user