Skip to main content

Builder with plugin system

Project description

dogebuild

PyPI version Build Status Documentation Status

General purpose build manager mainly designed to build C++ projects which uses directed acyclic graph (DAG) to manage tasks dependencies.

Install

pip install dogebuild

How to use

Dogebuild uses dogefile.py to describe project structure and task DAG. An example of dogefile.py:

from dogebuild_c.c_plugin import CPlugin, BinaryType
from dogebuild.dependencies import dependencies, folder

dependencies(
    folder('../dependency')
)

CPlugin(
    type=BinaryType.EXECUTABLE,
    out='hello',
    src_dir='.',
    src=[
        'main.c',
    ],
)

To run task simply pass task name as argument to doge script. doge build will run build task and all dependencies. You can also run multiple tasks: doge clean build.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dogebuild-0.2.1.tar.gz (6.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page