summaryrefslogtreecommitdiff
path: root/tests/projects/other/bin2c/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-08-05 00:29:18 +0800
committerruki <[email protected]>2021-08-05 00:29:18 +0800
commitb700ce5f896f1a3edfadafb4c188d1f147ea4ac7 (patch)
tree298f5a01927bc8ce08eb5d0911f9f11d3f330d0d /tests/projects/other/bin2c/xmake.lua
parent87d159290c9d9f5ad00e26640cb091f6ac068d05 (diff)
add bin2c module
Diffstat (limited to 'tests/projects/other/bin2c/xmake.lua')
-rw-r--r--tests/projects/other/bin2c/xmake.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/other/bin2c/xmake.lua b/tests/projects/other/bin2c/xmake.lua
new file mode 100644
index 000000000..4cd6f95ae
--- /dev/null
+++ b/tests/projects/other/bin2c/xmake.lua
@@ -0,0 +1,9 @@
+add_rules("mode.debug", "mode.release")
+
+target("test")
+ set_kind("binary")
+ add_files("src/*.c")
+ add_files("src/*.bin")
+ add_rules("utils.bin2c")
+
+