Giter Club home page Giter Club logo

bobo's Introduction

bobo

Bobo is an easy to use building tool inspired by blade.

Dependencies

  • python
  • scons

Install

sudo ./setup.py install

Usage

  • Create the BUILD_ROOT file in the workspace directory.
cd <WORKSPACE_DIR>
touch BUILD_ROOT
  • Edit a BUILD file in a project directory, which is a sub-directory of the worksapce directory.
cd <PROJECT_DIR>
vim BUILD

A BUILD file may be like this:

proto_library(
    name = 'example_proto',
    srcs = 'example.proto',
)

cc_library(
    name = 'example',
    srcs = 'example.cpp',
    deps = [
        'example_proto',
    ]
)

cc_test(
    name = 'example_test',
    srcs = 'example_test.cpp',
    deps = 'example',
)

cc_binary(
    name = 'example_main',
    srcs = 'main.cpp',
    deps = [
    	'example',
    	'/common/concurrency',
    	'//util/algorithm',
        '#glog',
    ],
    roots = [
    	'/subws/src/util',
    ]
)
  • Run bb command.
bb build

Differences between bobo and blade

  • bobo supports sub-workspace by roots option.
  • bobo supports external libraries and headers by libs and incs options.
  • bobo is under Apache V2 license, which is more friendly to users and developers.

Supported target types

  • cc_library: build a library.
  • cc_binary: build a binary.
  • cc_test: build unittest binary based on gtest.
  • proto_library: build a protobuf library.

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.