summaryrefslogtreecommitdiff
path: root/core/pkg/tbox.pkg/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-08-15 11:07:53 +0800
committerruki <[email protected]>2017-08-15 11:07:53 +0800
commited80709acfcf740f48375512b1f6cf6a0b009d5c (patch)
tree474f726b285e6e3f31df9d16273902661e62ce8f /core/pkg/tbox.pkg/xmake.lua
parent19cc317957ebc1aa4654cff37118c74a0cfabe70 (diff)
remove tbox.pkg and add tbox files
Diffstat (limited to 'core/pkg/tbox.pkg/xmake.lua')
-rw-r--r--core/pkg/tbox.pkg/xmake.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/pkg/tbox.pkg/xmake.lua b/core/pkg/tbox.pkg/xmake.lua
deleted file mode 100644
index 50e568b7a..000000000
--- a/core/pkg/tbox.pkg/xmake.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-
--- the tbox package
-option("tbox")
-
- -- show menu
- set_showmenu(true)
-
- -- set category
- set_category("package")
-
- -- set description
- set_description("The tbox package")
-
- -- set language: c99, c++11
- set_languages("c99", "cxx11")
-
- -- add defines to config.h if checking ok
- add_defines_h("$(prefix)_PACKAGE_HAVE_TBOX")
-
- -- add links for checking
- add_links("tbox")
-
- -- add link directories
- add_linkdirs("lib/$(mode)/$(plat)/$(arch)")
-
- -- add c includes for checking
- add_cincludes("tbox/tbox.h")
-
- -- add include directories
- add_includedirs("inc/$(plat)", "inc")