diff -r 1a0285e2c239 -r 2b939399b83b ProjectBuilder.st --- a/ProjectBuilder.st Wed Jul 18 19:12:42 2012 +0200 +++ b/ProjectBuilder.st Fri Jul 20 15:30:07 2012 +0200 @@ -671,6 +671,9 @@ directory := package directory. makeCommand := ParserFlags makeCommand. + usedCompiler isNil ifTrue:[ + usedCompiler := ParserFlags usedCompiler. + ]. usedCompiler = 'vc' ifTrue:[ makeCommand := 'vcmake'. "/ compilerFlag := '-DUSEVC' ] ifFalse:[ @@ -683,7 +686,7 @@ usedCompiler = 'bcc' ifTrue:[ makeCommand := 'bmake'. ] ifFalse:[ - self error. + self error:'no compiler specified'. ] ] ] @@ -729,7 +732,7 @@ ] ] - "Modified: / 21-01-2012 / 13:52:56 / cg" + "Modified: / 20-07-2012 / 12:13:29 / cg" ! recursiveCopyDirectoryForBuild:subdir