File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ void Solution::loadProjects()
59
59
{
60
60
loadProjectsFromFolder (L" Dependencies" , L" Dependencies" );
61
61
loadProjectsFromFolder (L" OptionalDependencies" , L" OptionalDependencies" );
62
- loadProjectsFromFolder (L" Projects " , L" ImageMagick" );
62
+ loadProjectsFromFolder (L" ProjectConfigs " , L" ImageMagick" );
63
63
}
64
64
65
65
void Solution::write (WaitDialog &waitDialog) const
@@ -266,7 +266,7 @@ void Solution::writeMagickBaseConfig() const
266
266
wstring
267
267
folderName;
268
268
269
- configIn.open (pathFromRoot (L" Projects \\ MagickCore\\ magick-baseconfig.h.in" ));
269
+ configIn.open (pathFromRoot (L" ProjectConfigs \\ MagickCore\\ magick-baseconfig.h.in" ));
270
270
if (!configIn)
271
271
return ;
272
272
@@ -402,15 +402,15 @@ void Solution::writeMakeFile() const
402
402
403
403
lib.close ();
404
404
405
- zipIn=wifstream (pathFromRoot (L" Projects \\ PerlMagick\\ Zip.ps1" ), std::ios::binary);
405
+ zipIn=wifstream (pathFromRoot (L" ProjectConfigs \\ PerlMagick\\ Zip.ps1" ), std::ios::binary);
406
406
if (!zipIn)
407
407
return ;
408
408
409
409
zip=wofstream (pathFromRoot (L" ImageMagick\\ PerlMagick\\ Zip.ps1" ), std::ios::binary);
410
410
zip << zipIn.rdbuf ();
411
411
zip.close ();
412
412
413
- makeFileIn.open (pathFromRoot (L" Projects \\ PerlMagick\\ Makefile.PL.in" ));
413
+ makeFileIn.open (pathFromRoot (L" ProjectConfigs \\ PerlMagick\\ Makefile.PL.in" ));
414
414
if (!makeFileIn)
415
415
return ;
416
416
You can’t perform that action at this time.
0 commit comments