增加 CodeBlocks 利用 cbp2make 生成 Makefile.
Signed-off-by: lion.chan <cy187lion@sina.com>
This commit is contained in:
parent
61db88652a
commit
3eb8dca84b
|
@ -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 文件。
|
Loading…
Reference in New Issue