Lua cjson库在windows下的编译与使用

2015/05/06 lua 共 603 字,约 2 分钟

找了老半天都没有windows版本的cjson.dll库,只能手动编译。

下载: http://www.kyne.com.au/~mark/software/lua-cjson.php

由于不是windows下的vs项目,需要使用CMAKE转换一下,cmake下载地址:http://www.cmake.org/cmake/resources/software.html

我下载的是:

  
Windows (Win32 Installer)cmake-2.8.7-win32-x86.exe

转换为vs2005工程后编译出错,把所有static inline的函数修改为static的,把一些不存在的api添加为windows下带下划线的版本,strncasecmp替换为stricmp

创建模块定义文件(.def),内容:

LIBRARY "cjson"

EXPORTS

luaopen_cjson

也就是要导出luaopen_cjson函数。

编写Lua脚本测试使用:

local cjson = require "cjson"

s1 = [[{"result":0,"next_req":600,"error":""}]]
s2 = [[{"ads":[{"monitor":"","is_sens":0}]}
]]

j1 = cjson.decode(s1)
j2 = cjson.decode(s2)
print(j1['ads'])
print(j2['ads'])

文档信息

Search

    Table of Contents