GithubHelp home page GithubHelp logo

alexxnica / craftr Goto Github PK

View Code? Open in Web Editor NEW

This project forked from craftr-build/craftr-build-4.x

0.0 1.0 0.0 2.1 MB

Meta build system based on Ninja and Python

Home Page: https://craftr-build.github.io/craftr/

License: GNU General Public License v3.0

Python 85.00% C 14.91% C++ 0.10%

craftr's Introduction

The Craftr build system

PyPI Version CII Best Practices

Craftr is a meta build system based on Python 3 scripts which produces Ninja build manifests. It enforces the use of modular build definitions that can be re-used easily and ships with a standard library supporting various programming languages and common libraries.

Features

  • Aims to be cross-platform compatible (regularly tested on Windows, Mac OS and Linux)
  • Build definitions divided into versioned modules
  • Embedd actual Python functions into the build process (keyword Tasks)
  • Dependency-lock files for fully reproducible builds
  • Package manager (hosted on Craftr.net)

Basic Usage

$ craftr version                            # Print Craftr version and exit
$ craftr export                             # Generate Ninja manifest
$ craftr build [target [target [...]]]      # Build all or the specified target(s)
$ craftr clean [-r] [target [target [...]]] # Clean all or the specified target(s)
$ craftr startpackage <name> [directory]    # Start a new Craftr project (manifest, Craftrfile)
$ craftr lock                               # Generate a .dependency-lock file (after craftr export)

C++ Example

cxx = load('craftr.lang.cxx')
program = cxx.executable(
  inputs = cxx.compile_cpp(sources = glob('src/**/*.cpp')),
  output = 'main'
)

Java Example

java = load('craftr.lang.java')
jar = java.jar(
  inputs = java.compile(src_dir = local('src')),
  output = 'myapp',
  entry_point = 'Main'
)

C# Example

cs = load('craftr.lang.csharp')
app = cs.compile(
  sources = glob('src/**/*.cs'),
  output = 'Main',
  target = 'exe'
)

Cython Exmple

cython = load('craftr.lang.cython')
primes = cython.project(
  sources = [local('Primes.pyx')],
  main = local('Main.pyx')
)
run = runtarget(primes.main)

How to Contribute

Please create an Issue if you have any questions, problems or feature requests.

Installation

Make sure you specify the specific version you want to install since there is no untagged version of Craftr 2.x available on PyPI yet and otherwise Pip will install Craftr 1.x (which is quite different). To get the newest stable version of Craftr 2, use

$ pip install craftr-build==2.0.0.dev7

To get the cutting edge development version, I suggest installing Craftr from the Git repository into a virtualenv.

$ virtualenv -p python3 env && source env/bin/activate
$ git clone https://github.com/craftr-build/craftr.git -b development
$ cd craftr
$ pip install -e .

Requirements

Python Dependencies (automatically installed)

License

The Craftr build system
Copyright (C) 2016  Niklas Rosenstein

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

For more information, see the LICENSE.txt file.

craftr's People

Contributors

niklasrosenstein avatar dfroger avatar galexite avatar winksaville avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.