1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
extern "C" {
#include <xmake/xmake.h>
}
static tb_byte_t const g_luafiles_data[] = {
#include "luafiles.xmz.h"
};
static tb_int_t lni_test_hello(lua_State *lua) {
lua_pushliteral(lua, "hello xmake!");
return 1;
}
static tb_void_t lni_initalizer(xm_engine_ref_t engine, lua_State *lua) {
static luaL_Reg const lni_test_funcs[] = { { "hello", lni_test_hello }, { tb_null, tb_null } };
xm_engine_register(engine, "test", lni_test_funcs);
xm_engine_add_embedfiles(engine, g_luafiles_data, sizeof(g_luafiles_data));
}
tb_int_t main(tb_int_t argc, tb_char_t **argv) {
tb_char_t *taskargv[] = { "lua", "-D", "lua.main", tb_null };
return xm_engine_run("${TARGETNAME}", argc, argv, taskargv, lni_initalizer);
}
|