cocos2dx-3.x 导入lua扩展库

总得来说还是很简单的,只需三步:

文件放到cocos2d-x/external/lua目录下

修改lua_extensions.c,包含相关文件

修改Android.mk做Android支持

具体链接如下

cocos2dx-3.x 导入lua扩展库 - CSDN博客

cocos2d-x 3.3 导入lua扩展库 - CSDN博客

在cocos2dx-lua上导入sproto的相关配置 - CSDN博客

导入.h的格式如下

#ifndef __LUA_LPEG_H_

#define __LUA_LPEG_H_

#if __cplusplus

extern "C" {

#endif

#include "lua.h"

#include "lauxlib.h"

int luaopen_lpeg(lua_State *L);

#if __cplusplus

}

#endif

//int luaopen_lpeg(lua_State *L);

#endif

你可能感兴趣的:(cocos2dx-3.x 导入lua扩展库)