# HG changeset patch # User Claus Gittinger # Date 1280140028 -7200 # Node ID e03152b97cddc632ff6e8cb6190826d3d7d0b68d # Parent f056aa5d29a7de9aa6a62589d12568bca80bf39d usevc/usebc handling 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