mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 10:03:51 +00:00
fix path to msvc def file
svn path=/trunk/; revision=32507
This commit is contained in:
parent
420b99bdde
commit
79c6e213ad
1 changed files with 5 additions and 2 deletions
|
@ -274,6 +274,9 @@ MSVCBackend::_generate_vcproj ( const Module& module )
|
|||
{
|
||||
intermediatedir = module.output->relative_path + vcdir;
|
||||
importLib = _strip_gcc_deffile(module.importLibrary->source->name, module.importLibrary->source->relative_path, intermediatedir);
|
||||
importLib = Path::RelativeFromDirectory (
|
||||
importLib,
|
||||
module.output->relative_path );
|
||||
}
|
||||
|
||||
fprintf ( OUT, "\t<Configurations>\r\n" );
|
||||
|
@ -854,8 +857,8 @@ MSVCBackend::_strip_gcc_deffile(std::string Filename, std::string sourcedir, std
|
|||
NewFilename = _replace_str(NewFilename, "_msvc.de", "_msvc.def");
|
||||
Filename = sourcedir + "\\" + Filename;
|
||||
|
||||
Directory dir(objdir);
|
||||
dir.GenerateTree(IntermediateDirectory, false);
|
||||
Directory dir(objdir);
|
||||
dir.GenerateTree(IntermediateDirectory, false);
|
||||
|
||||
std::fstream in_file(Filename.c_str(), std::ios::in);
|
||||
std::fstream out_file(NewFilename.c_str(), std::ios::out);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue