增加 CodeBlocks 利用 cbp2make 生成 Makefile.

Signed-off-by: lion.chan <cy187lion@sina.com>
This commit is contained in:
lion.chan 2020-08-09 10:55:13 +08:00
parent 61db88652a
commit 3eb8dca84b
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# CodeBlocks 利用 cbp2make 生成 Makefile
cbp2make 是 CodeBlocks 提供的工具,使用 cbp2make 可将 CodeBlocks 的 cbp 工程文件转换为 Makefile。
```bash
# For Windows
cbp2make.exe -in test.cbp -out Makefile
# For Linux
cbp2make -in test.cbp -out Makefile
```
Windows 可在 CodeBlocks 的安装路径下找到 cbp2make.exe 文件。