aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-02-15 13:20:27 +0000
committerMatthew Wild <mwild1@gmail.com>2010-02-15 13:20:27 +0000
commitfbcae7041b84f6e941f23d3d8dd97abc09df3ed3 (patch)
treeb8a8532f076b8e4fabbb97e0c5d916417481e864
parent59333212814d8de493295e2a19b046bed81d9a09 (diff)
downloadluaevent-prosody-fbcae7041b84f6e941f23d3d8dd97abc09df3ed3.tar.gz
luaevent-prosody-fbcae7041b84f6e941f23d3d8dd97abc09df3ed3.zip
premake.lua: Remove, as we now have a standard Makefile
-rw-r--r--premake.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/premake.lua b/premake.lua
deleted file mode 100644
index d66861a..0000000
--- a/premake.lua
+++ /dev/null
@@ -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"
- )
-}