批量构建CMake工程的Python工具,支持build.json配置和命令行批量编译
Project description
pycmakebuild
Python CMake 批量构建与自动化工具,支持通过 build.json 配置文件和命令行批量编译多个 CMake 项目,适用于跨平台 C++/第三方库工程的自动化批量编译。
功能特性
- 支持 build.json 配置批量管理和编译多个 CMake 项目
- 支持 Debug/Release 等多种构建类型,支持自定义 CMakeLists.txt 子目录
- 支持命令行一键初始化环境、生成模板、批量构建
- 自动推断 CMake 构建参数,兼容 Windows/Linux/Mac
- 支持通过
python -m pycmakebuild或pycmakebuild命令行调用
快速开始
1. 安装
pip install pycmakebuild
2. 初始化环境和模板
python -m pycmakebuild --init
将在当前目录生成 .env 和 build.json 模板。
3. 编辑 build.json
示例:
{
"sources": [
{
"path": "../Log4Qt",
"name": "log4qt",
"build_types": ["Debug", "Release"],
"cmakelists_subpath": ".",
"update_source": false,
"other_build_params": ["-DCUSTOM_OPTION=ON"]
}
]
}
path: CMake 项目源码路径name: 目标名称(安装目录名)build_types: 构建类型数组(如 Debug/Release)cmakelists_subpath: CMakeLists.txt 所在子目录(可选,默认".")update_source: 是否自动更新源码 git clean/pull(可选,默认 false)other_build_params: 传递给 cmake 的额外参数列表(如 ["-DCUSTOM_OPTION=ON"],可选)- "update_source" 字段已废弃,如需清理请用 --clean 命令
4. 批量构建
python -m pycmakebuild --build
或直接
python -m pycmakebuild
会自动检测当前目录下 build.json 并批量构建所有配置项目,支持自定义 cmake 参数。
5. 批量清理源码和安装目录
python -m pycmakebuild --clean
自动清理更新源码
命令行参数
--init初始化环境和 build.json 模板--build强制根据 build.json 批量构建--clean批根据 build.json 更新源码
依赖
- python-dotenv:环境变量管理
- cmake:Python CMake 封装
典型应用场景
- 本地一键环境初始化默认构建环境与批量编译CMake三方库
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pycmakebuild-0.2.5.tar.gz
(6.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pycmakebuild-0.2.5.tar.gz.
File metadata
- Download URL: pycmakebuild-0.2.5.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdbf5492395c330c6c7f2432f45264e1ed36e31b236f18915355bf359e253ab4
|
|
| MD5 |
37e4b9f28558715988ff10ea807ca2ec
|
|
| BLAKE2b-256 |
f7faa0326e3246b041c8d54e1d0bcd2ab6233a8ede9f17df65a13ded756817d9
|
File details
Details for the file pycmakebuild-0.2.5-py3-none-any.whl.
File metadata
- Download URL: pycmakebuild-0.2.5-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c365f37b0dd721cde2f62c0d9ea56440e9303ea9361d2abbc93a7009b7d0e8e
|
|
| MD5 |
ad509539558c027b21145c24facaf998
|
|
| BLAKE2b-256 |
d755bba4f02906323b1714144d7527119e4b0107ef42490b37e7b4f24c239f72
|