ProjectBuilder.st
changeset 2793 e03152b97cdd
parent 2741 783dda495655
child 2844 5e4e46856d8d
--- 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