Home > Backend Development > C++ > body text

pyCBuild

Susan Sarandon
Release: 2024-11-19 14:53:02
Original
776 people have browsed it

pyCBuild

pyCBuild is a C/C build system written in Python.

It has support git cloning repos but It is not completely implemented yet

Repository: BhJaipal/pyCBuild

Example config file

name = "Example project"
# default values
# builddir = "build"
# lib-dir = "lib"
# bin-dir = "bin"
[main]
language = "c"
src = "main.c"
type = "executable" # | "static_lib" | "shared_lib"
[[main.deps]]
name = "gtk-3.0"
use = "pkg-config" # | "git"
uri = "..." # only used with git
Copy after login

The above is the detailed content of pyCBuild. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template