aboutsummaryrefslogtreecommitdiffstats
path: root/premake.lua
diff options
context:
space:
mode:
authorThomas Harning Jr <harningt@gmail.com>2011-01-15 19:51:21 -0500
committerThomas Harning Jr <harningt@gmail.com>2011-01-15 19:51:21 -0500
commit1153affe43bbc7f929213e0a5d6f8b5189cc45bd (patch)
tree1e63a88fdebccabf3529fa9c697c3f43b067c673 /premake.lua
parent24cac1c1bcf4b0dc3188f72934d2881692829e61 (diff)
parentd6cfe3ef1bc7d3c489abe394830211906e650d2c (diff)
downloadluaevent-prosody-1153affe43bbc7f929213e0a5d6f8b5189cc45bd.tar.gz
luaevent-prosody-1153affe43bbc7f929213e0a5d6f8b5189cc45bd.zip
Merge branch 'prosody-tree'
Diffstat (limited to 'premake.lua')
-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"
- )
-}