美文网首页
搭建uLua-protobuf环境

搭建uLua-protobuf环境

作者: 歌德与巴赫 | 来源:发表于2016-04-14 22:57 被阅读0次

    1、下载protobuf和protoc-gen-lua开源项目。

    2、在protobuf/vsprojects目录下编译出protoc.exe。
    3、将protoc.exe复制到protobuf/src目录
    4、在protobuf/python目录下编译和安装支持Python插件的Protoc。
    编译命令:python setup.py build
    安装命令:python setup.py install

    5、将protoc.exe再复制到protoc-gen-lua目录
    6、在protoc-gen-lua/plugin下创建protoc-gen-lua.bat文件,文件内容:
    @python "%~dp0protoc-gen-lua"
    (其实就是用一个Bat对Python插件进行封装)
    7、在protoc-gen-lua目录创建buildproto.bat文件,文件核心内容:
    "protoc.exe" --plugin=protoc-gen-lua=".\plugin\protoc-gen-lua.bat" --lua_out=. xxx.proto
    (其实就是执行官方的protoc.exe,但是使用一个基于Python的插件:protoc-gen-lua)
    --lua_out 输出目录
    xxx.proto Proto描述文件

    相关文章

      网友评论

          本文标题:搭建uLua-protobuf环境

          本文链接:https://www.haomeiwen.com/subject/cgzglttx.html