summaryrefslogtreecommitdiff
path: root/core/src/cli/xmake.c
diff options
context:
space:
mode:
authorruki <[email protected]>2024-09-25 14:19:12 +0800
committerGitHub <[email protected]>2024-09-25 14:19:12 +0800
commitdc097d15931e7d16e295f01b1b4e136a3bbf11f1 (patch)
tree95d9bf5d048df8c261b0917ff43e3bb4f3c9842b /core/src/cli/xmake.c
parent583f8e6944130e157ec85b8a975a76733b3eb775 (diff)
parentc2294cfacd63067dbe3ec1f9cd43f4d85808219c (diff)
Merge pull request #5656 from xmake-io/cli
rename demo to cli
Diffstat (limited to 'core/src/cli/xmake.c')
-rw-r--r--core/src/cli/xmake.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/src/cli/xmake.c b/core/src/cli/xmake.c
new file mode 100644
index 000000000..82ed54e25
--- /dev/null
+++ b/core/src/cli/xmake.c
@@ -0,0 +1,12 @@
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * includes
+ */
+#include "xmake/xmake.h"
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * main
+ */
+tb_int_t main(tb_int_t argc, tb_char_t** argv)
+{
+ return xm_engine_run("xmake", argc, argv, tb_null, tb_null);
+}