usevc/usebc handling
authorClaus Gittinger <cg@exept.de>
Mon, 26 Jul 2010 12:27:08 +0200
changeset 2793 e03152b97cdd
parent 2792 f056aa5d29a7
child 2794 56fb74312287
usevc/usebc handling
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