mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
append "_auto" to dsp and vcproj filenames to not conflict with any manually created project files
svn path=/trunk/; revision=19722
This commit is contained in:
parent
1b33a918b6
commit
da6392a74f
1 changed files with 2 additions and 2 deletions
|
@ -209,7 +209,7 @@ std::string
|
|||
MSVCBackend::DspFileName ( const Module& module ) const
|
||||
{
|
||||
return DosSeparator(
|
||||
ReplaceExtension ( module.GetPath(), ".dsp" )
|
||||
ReplaceExtension ( module.GetPath(), "_auto.dsp" )
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -217,6 +217,6 @@ std::string
|
|||
MSVCBackend::VcprojFileName ( const Module& module ) const
|
||||
{
|
||||
return DosSeparator(
|
||||
ReplaceExtension ( module.GetPath(), ".vcproj" )
|
||||
ReplaceExtension ( module.GetPath(), "_auto.vcproj" )
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue