Changeset 806 for mcbuilder/trunk/src/Builder.cpp
- Timestamp:
- 08/11/08 10:03:58 (5 months ago)
- Files:
-
- 1 modified
-
mcbuilder/trunk/src/Builder.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mcbuilder/trunk/src/Builder.cpp
r800 r806 57 57 } 58 58 currentProjectPath = projectName; 59 setWorkingDirectory(QDir(currentProjectPath).filePath("build")); 59 QDir dir(currentProjectPath); 60 setWorkingDirectory(dir.filePath("build")); 60 61 loadDependencies(LIBRARIES_DIR, currentProjectPath); // this loads up the list of libraries this project depends on 61 62 createMakefile(currentProjectPath); // create a Makefile for this project, given the dependencies … … 69 70 start(makePath + "make"); 70 71 QString buildmsg("***************************************************************\n"); 71 buildmsg += " mcbuilder - building " + projectName+ "\n";72 buildmsg += " mcbuilder - building " + dir.dirName() + "\n"; 72 73 buildmsg += QDateTime::currentDateTime().toString(" MMM d, yyyy h:m ap") + "\n"; 73 74 buildmsg += "***************************************************************";
