DEV Community

Jaipal001
Jaipal001

Posted on

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
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay