diff -r f056aa5d29a7 -r e03152b97cdd ProjectBuilder.st --- a/ProjectBuilder.st Sun Jul 04 10:21:22 2010 +0200 +++ b/ProjectBuilder.st Mon Jul 26 12:27:08 2010 +0200 @@ -625,8 +625,8 @@ directory := package directory. makeCommand := ParserFlags makeCommand. - usedCompiler = 'vc' ifTrue:[ makeCommand := 'vcmake'. compilerFlag := 'USEVC=1' ]. - usedCompiler = 'lcc' ifTrue:[ makeCommand := 'lcmake'. compilerFlag := 'USELCC=1' ]. + usedCompiler = 'vc' ifTrue:[ makeCommand := 'vcmake'. compilerFlag := '-DUSEVC' ]. + usedCompiler = 'lcc' ifTrue:[ makeCommand := 'lcmake'. compilerFlag := '-DUSELCC' ]. usedCompiler = 'gcc' ifTrue:[ makeCommand := 'make'. ]. OperatingSystem isUNIXlike ifTrue:[ @@ -666,6 +666,8 @@ onError:[:status| self error:'make failed']. ] ] + + "Modified: / 26-07-2010 / 12:25:33 / cg" ! recursiveCopyDirectoryForBuild:subdir