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()
5959{
6060 loadProjectsFromFolder (L" Dependencies" , L" Dependencies" );
6161 loadProjectsFromFolder (L" OptionalDependencies" , L" OptionalDependencies" );
62- loadProjectsFromFolder (L" Projects " , L" ImageMagick" );
62+ loadProjectsFromFolder (L" ProjectConfigs " , L" ImageMagick" );
6363}
6464
6565void Solution::write (WaitDialog &waitDialog) const
@@ -266,7 +266,7 @@ void Solution::writeMagickBaseConfig() const
266266 wstring
267267 folderName;
268268
269- configIn.open (pathFromRoot (L" Projects \\ MagickCore\\ magick-baseconfig.h.in" ));
269+ configIn.open (pathFromRoot (L" ProjectConfigs \\ MagickCore\\ magick-baseconfig.h.in" ));
270270 if (!configIn)
271271 return ;
272272
@@ -402,15 +402,15 @@ void Solution::writeMakeFile() const
402402
403403 lib.close ();
404404
405- zipIn=wifstream (pathFromRoot (L" Projects \\ PerlMagick\\ Zip.ps1" ), std::ios::binary);
405+ zipIn=wifstream (pathFromRoot (L" ProjectConfigs \\ PerlMagick\\ Zip.ps1" ), std::ios::binary);
406406 if (!zipIn)
407407 return ;
408408
409409 zip=wofstream (pathFromRoot (L" ImageMagick\\ PerlMagick\\ Zip.ps1" ), std::ios::binary);
410410 zip << zipIn.rdbuf ();
411411 zip.close ();
412412
413- makeFileIn.open (pathFromRoot (L" Projects \\ PerlMagick\\ Makefile.PL.in" ));
413+ makeFileIn.open (pathFromRoot (L" ProjectConfigs \\ PerlMagick\\ Makefile.PL.in" ));
414414 if (!makeFileIn)
415415 return ;
416416
You can’t perform that action at this time.
0 commit comments