Merge topic 'vs6-rule-files'
0f24a66 VS 6: Create .rule file directory before file
This commit is contained in:
commit
e6b72e8b87
@ -325,6 +325,9 @@ void cmLocalVisualStudio6Generator::WriteDSPFile(std::ostream& fout,
|
|||||||
if(!cmSystemTools::FileExists(source.c_str()))
|
if(!cmSystemTools::FileExists(source.c_str()))
|
||||||
{
|
{
|
||||||
cmSystemTools::ReplaceString(source, "$(IntDir)/", "");
|
cmSystemTools::ReplaceString(source, "$(IntDir)/", "");
|
||||||
|
// Make sure the path exists for the file
|
||||||
|
std::string path = cmSystemTools::GetFilenamePath(source);
|
||||||
|
cmSystemTools::MakeDirectory(path.c_str());
|
||||||
#if defined(_WIN32) || defined(__CYGWIN__)
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
||||||
std::ofstream sourceFout(source.c_str(),
|
std::ofstream sourceFout(source.c_str(),
|
||||||
std::ios::binary | std::ios::out
|
std::ios::binary | std::ios::out
|
||||||
|
Loading…
x
Reference in New Issue
Block a user