Metadata-Version: 2.4
Name: pcmake
Version: 0.1.0
Summary: A lightweight cross-platform C/C++ build system written in Python.
Author-email: Your Name <your.email@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# pcmake

`pcmake` 是一個輕量級、跨平台的 C/C++ 專案建置工具。

## 安裝

```bash
pip install pcmake
```

## 使用方法

在專案目錄下建立 `Pcmakefile`：

```python
app = target("ssl_app")
app.set_kind("binary")
app.add_files("main.c", "math_utils.c")
app.add_packages("openssl")
```

然後執行建置：

```bash
pcmake build
```
