summaryrefslogtreecommitdiff
path: root/tests/actions/addon/projects/custom-package/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/actions/addon/projects/custom-package/xmake.lua')
-rw-r--r--tests/actions/addon/projects/custom-package/xmake.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/actions/addon/projects/custom-package/xmake.lua b/tests/actions/addon/projects/custom-package/xmake.lua
new file mode 100644
index 000000000..1c967020d
--- /dev/null
+++ b/tests/actions/addon/projects/custom-package/xmake.lua
@@ -0,0 +1,9 @@
+-- the package definitions come from the addon
+includes("@addon/custom-package/packages")
+
+add_requires("hello-utils")
+
+target("test")
+ set_kind("binary")
+ add_files("src/main.c")
+ add_packages("hello-utils")