Changeset 841

Show
Ignore:
Timestamp:
08/19/08 11:28:44 (3 months ago)
Author:
liamstask
Message:

- load libraries for clean as well

Files:
1 modified

Legend:

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

    r840 r841  
    7575  QDir buildDir(ensureBuildDirExists(projectName)); 
    7676  setWorkingDirectory(buildDir.path()); 
     77  loadDependencies(LIBRARIES_DIR, currentProjectPath); 
    7778  if(compareConfigFile(projectName)) 
    7879    createConfigFile(projectName);      // create a config file based on the Properties for this project 
     
    132133      { 
    133134        int filesize = bins.first().size(); 
    134         if(filesize <= 256000) 
     135        if(filesize <= (256 * 1024) ) 
    135136        { 
    136137          mainWindow->printOutput(tr("%1.bin is %2 out of a possible 256000 bytes.").arg(projectName).arg(filesize));