Show
Ignore:
Timestamp:
08/11/08 10:03:58 (5 months ago)
Author:
liamstask
Message:

- adding some coloration to build log output to help skimming it

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mcbuilder/trunk/src/Builder.cpp

    r800 r806  
    5757  } 
    5858  currentProjectPath = projectName; 
    59   setWorkingDirectory(QDir(currentProjectPath).filePath("build")); 
     59  QDir dir(currentProjectPath); 
     60  setWorkingDirectory(dir.filePath("build")); 
    6061  loadDependencies(LIBRARIES_DIR, currentProjectPath);      // this loads up the list of libraries this project depends on 
    6162  createMakefile(currentProjectPath);        // create a Makefile for this project, given the dependencies 
     
    6970  start(makePath + "make"); 
    7071  QString buildmsg("***************************************************************\n"); 
    71   buildmsg += "  mcbuilder - building " + projectName + "\n"; 
     72  buildmsg += "  mcbuilder - building " + dir.dirName() + "\n"; 
    7273  buildmsg += QDateTime::currentDateTime().toString("  MMM d, yyyy h:m ap") + "\n"; 
    7374  buildmsg += "***************************************************************";