summaryrefslogtreecommitdiff
path: root/core/pkg/luajit.pkg/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-03-30 10:45:31 +0800
committerruki <[email protected]>2017-03-30 10:45:31 +0800
commitbd9e9505a78602000c2625dc483cc53a2e69f10f (patch)
tree99cde34a4f101a39e3be458fa28c1386cc772b76 /core/pkg/luajit.pkg/xmake.lua
parent130e0d22c840da966e8426e0c2adc1285a70a3d8 (diff)
add luajit sources
Diffstat (limited to 'core/pkg/luajit.pkg/xmake.lua')
-rw-r--r--core/pkg/luajit.pkg/xmake.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/pkg/luajit.pkg/xmake.lua b/core/pkg/luajit.pkg/xmake.lua
deleted file mode 100644
index f2c7f8490..000000000
--- a/core/pkg/luajit.pkg/xmake.lua
+++ /dev/null
@@ -1,30 +0,0 @@
--- add luajit package
-option("luajit")
-
- -- show menu
- set_showmenu(true)
-
- -- set category
- set_category("package")
-
- -- set description
- set_description("The luajit package")
-
- -- set language: c99, c++11
- set_languages("c99", "cxx11")
-
- -- add defines to config.h if checking ok
- add_defines_h_if_ok("$(prefix)_PACKAGE_HAVE_LUAJIT")
-
- -- add links for checking
- add_links("luajit")
-
- -- add link directories
- add_linkdirs("lib/$(mode)/$(plat)/$(arch)")
-
- -- add c includes for checking
- add_cincludes("luajit/luajit.h")
-
- -- add include directories
- add_includedirs("inc")
-