diff premake.lua @ 35:3cfcb944304e trunk

[svn r39] * Updated to DMD 1.022 with the exception of: Bugzilla 278: dmd.conf search path doesn't work This fix was causing crashes for me :/ So for it's the old behaviour
author lindquist
date Tue, 09 Oct 2007 06:21:30 +0200
parents e116aa1488e6
children fd32135dca3e
line wrap: on
line diff
--- a/premake.lua	Tue Oct 09 02:50:00 2007 +0200
+++ b/premake.lua	Tue Oct 09 06:21:30 2007 +0200
@@ -1,5 +1,4 @@
 project.name = llvmdc
-project.bindir = "bin"
 
 package = newpackage()
 package.name = "idgen"
@@ -7,7 +6,7 @@
 package.language = "c++"
 package.files = { "dmd/idgen.c" }
 package.buildoptions = { "-x c++" }
-package.postbuildcommands = { "bin/idgen", "mv -f id.c id.h dmd" }
+package.postbuildcommands = { "./idgen", "mv -f id.c id.h dmd" }
 
 package = newpackage()
 package.name = "impcnvgen"
@@ -15,9 +14,10 @@
 package.language = "c++"
 package.files = { "dmd/impcnvgen.c" }
 package.buildoptions = { "-x c++" }
-package.postbuildcommands = { "bin/impcnvgen", "mv -f impcnvtab.c dmd" }
+package.postbuildcommands = { "./impcnvgen", "mv -f impcnvtab.c dmd" }
 
 package = newpackage()
+package.bindir = "bin"
 package.name = "llvmdc"
 package.kind = "exe"
 package.language = "c++"