All Projects → jimporter → Bfg9000

jimporter / Bfg9000

Licence: bsd-3-clause
bfg9000 - build file generator

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Bfg9000

Walk
A fast, general purpose, graph based build and task execution utility.
Stars: ✭ 108 (+89.47%)
Mutual labels:  build-system, make
Reggae
Build system in D, Python, Ruby, Javascript or Lua
Stars: ✭ 141 (+147.37%)
Mutual labels:  build-system, make
Mmake
Mmake is a small program which wraps make to provide additional functionality, such as user-friendly help output, remote includes, and eventually more. It otherwise acts as a pass-through to standard make.
Stars: ✭ 1,593 (+2694.74%)
Mutual labels:  build-system, make
make
The Ultimate Makefile to compile all your C, C++, Assembly and Fortran projects
Stars: ✭ 41 (-28.07%)
Mutual labels:  make, build-system
Arduino Cmake Ng
CMake-Based framework for Arduino platforms
Stars: ✭ 123 (+115.79%)
Mutual labels:  build-system, make
makesure
Simple task/command runner with declarative goals and dependencies
Stars: ✭ 230 (+303.51%)
Mutual labels:  make, build-system
Erlang.mk
A build tool for Erlang that just works.
Stars: ✭ 538 (+843.86%)
Mutual labels:  build-system
Swift Llbuild
A low-level build system, used by Xcode and the Swift Package Manager
Stars: ✭ 836 (+1366.67%)
Mutual labels:  build-system
Unix
Mirror of the Restoration of 1st Edition UNIX kernel sources from pdf document.
Stars: ✭ 524 (+819.3%)
Mutual labels:  make
Mask
🎭 A CLI task runner defined by a simple markdown file
Stars: ✭ 495 (+768.42%)
Mutual labels:  make
Pi Builder
Extensible tool to build Arch Linux ARM for Raspberry Pi on x86_64 host using Docker
Stars: ✭ 31 (-45.61%)
Mutual labels:  build-system
Wordpress Starter
📦 A starter template for WordPress websites
Stars: ✭ 26 (-54.39%)
Mutual labels:  make
Bloop
Bloop is a build server and CLI tool to compile, test and run Scala fast from any editor or build tool.
Stars: ✭ 730 (+1180.7%)
Mutual labels:  build-system
Bake
Bake — the strangely familiar workflow utility.
Stars: ✭ 599 (+950.88%)
Mutual labels:  make
Cargo Make
Rust task runner and build tool.
Stars: ✭ 895 (+1470.18%)
Mutual labels:  make
Beak
A command line interface for your Swift scripts
Stars: ✭ 537 (+842.11%)
Mutual labels:  make
Wonderbuild
Wonderbuild is an extremely fast, extensible build tool
Stars: ✭ 9 (-84.21%)
Mutual labels:  build-system
Asynctasks.vim
🚀 Modern Task System for Project Building, Testing and Deploying !!
Stars: ✭ 495 (+768.42%)
Mutual labels:  make
Flubucore
A cross platform build and deployment automation system for building projects and executing deployment scripts using C# code.
Stars: ✭ 695 (+1119.3%)
Mutual labels:  build-system
C cpp project framework
CMake build system( framework) with kconfig support for C/CPP projects
Stars: ✭ 26 (-54.39%)
Mutual labels:  make

bfg9000 - build file generator

PyPi version Documentation Github build status Appveyor build status Coverage status

bfg9000 is a cross-platform build configuration system with an emphasis on making it easy to define how to build your software. It converts a Python-based build script into the appropriate files for your underlying build system of choice (Ninja, Make, or MSBuild).

Why bfg9000?

Familiar syntax

build.bfg files are just Python scripts with some new functions added, so you may already know how to write them; and when your build gets complicated, you can rely on the existing Python ecosystem to get you out of trouble.

Fast builds

bfg9000 ensures your builds are fast by relying on existing, mature build systems like Make and Ninja to do the heavy lifting of building your software; often, incremental builds don't need to execute bfg9000 at all!

Stay sane

Building your code shouldn't be the hard part of developing your project. Above all else, bfg9000 strives to help you get your build right the first time with many helpful features.

A brief example

You can't get much simpler than the simplest build.bfg file:

executable('simple', files=['simple.cpp'])

To build this executable, we need to create the actual build files and then run them:

$ cd /path/to/src/
$ 9k build/
$ cd build/
$ ninja

From there, you can run your newly-created executable: ./simple. Hooray!

For further examples, please see the examples/ subdirectory.

Installation

bfg9000 uses setuptools, so installation is much the same as any other Python package:

$ pip install bfg9000

From there, you can start using bfg to build your software! (If you're using Ubuntu, you can also install bfg9000 from the following PPA: ppa:jimporter/stable). For more information about how to install bfg9000, see the documentation.

License

This project is licensed under the BSD 3-clause license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].