premake.lua: Remove, as we now have a standard Makefile

Mon, 15 Feb 2010 13:20:27 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 15 Feb 2010 13:20:27 +0000
changeset 79
0bb6c4197500
parent 78
4782f315942f
child 80
73d56b9d00f5

premake.lua: Remove, as we now have a standard Makefile

premake.lua file | annotate | diff | comparison | revisions
--- a/premake.lua	Mon Feb 15 06:26:34 2010 +0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-project.name = "luaevent.core"
-project.libdir = "lib"
-project.bindir = "bin"
-
-package = newpackage()
-package.kind = "dll"
-package.language = "c++"
-package.targetprefix = ""
-package.target = "core"
-
-package.links = {
-	"event"
-}
-
-package.includepaths = {
-	"include",
-}
-if linux then
-	package.buildoptions = { "-Wall" }
-	package.config["Debug"].buildoptions = { "-O0" }
-	package.linkoptions =  { "-Wall -L/usr/local/lib" }
-	package.postbuildcommands = { "mkdir -p test/luaevent", "cp bin/* test/luaevent", "cp lua/* test" }
-else
-	print([[Other environements currently untested, may need tweaking]])
-end
-
-package.files = {
-	matchrecursive(
-		"src/*.c",
-		"include/*.h"
-	)
-}

mercurial