1 Star 0 Fork 0

SunBeau/parson

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
meson.build 753 Bytes
一键复制 编辑 原始数据 按行查看 历史
project('parson', 'c',
version : '1.5.3',
license : 'MIT',
meson_version : '>=0.46.0',
default_options : [
'c_std=c89', 'optimization=2',
'warning_level=2'
]
)
parson_sources = ['parson.c']
parson_inc = include_directories('.')
parson_lib = library(
meson.project_name(),
sources: parson_sources,
install: true
)
install_headers('parson.h')
parson = declare_dependency(
include_directories : parson_inc,
link_with : parson_lib
)
pkgconfig = import('pkgconfig')
# will create a pkg config
pkgconfig.generate(parson_lib,
version: meson.project_version(),
filebase: meson.project_name(),
name: meson.project_name(),
description: 'Lightweight JSON library written in C.',
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/SunBeau/parson.git
git@gitee.com:SunBeau/parson.git
SunBeau
parson
parson
master

搜索帮助