Coder Social home page Coder Social logo

bottle's Introduction

 ▄▄▄▄    ▒█████  ▄▄▄█████▓▄▄▄█████▓ ██▓    ▓█████
▓█████▄ ▒██▒  ██▒▓  ██▒ ▓▒▓  ██▒ ▓▒▓██▒    ▓█   ▀
▒██▒ ▄██▒██░  ██▒▒ ▓██░ ▒░▒ ▓██░ ▒░▒██░    ▒███
▒██░█▀  ▒██   ██░░ ▓██▓ ░ ░ ▓██▓ ░ ▒██░    ▒▓█  ▄
░▓█  ▀█▓░ ████▓▒░  ▒██▒ ░   ▒██▒ ░ ░██████▒░▒████▒
░▒▓███▀▒░ ▒░▒░▒░   ▒ ░░     ▒ ░░   ░ ▒░▓  ░░░ ▒░ ░
▒░▒   ░   ░ ▒ ▒░     ░        ░    ░ ░ ▒  ░ ░ ░  ░
 ░    ░ ░ ░ ░ ▒    ░        ░        ░ ░      ░
 ░          ░ ░                        ░  ░   ░  ░
      ░

Basic Usages

Command Arguments Explanation

bottle_package

DEPS

Add a package target for the current directory with add_library.

Create a interface library named as ///PROJECT:PACKAGE or ///PROJECT:deps if marked as DEPS.

All other library targets in the same package will be linked to this package except for those marked as XCLD.

bottle_library

  • NAME <name>

  • SRCS <source_list>

  • HDRS <header_list>

  • CFGS <config_list>

  • DEPS <dependencies>

  • FEAT <compile_features>

  • OPTS <compile_options>

  • DEFS <compile_definitions>

  • XCLD

Add a library target with the given name via add_library.

Create a shared/interface library named as ///PROJECT:PACKAGE:name.

Link this target to the current package ///PROJECT:PACKAGE if exists and not given XCLD.

bottle_binary

  • NAME <name>

  • SRCS <source_list>

  • HDRS <header_list>

  • DEPS <dependencies>

  • FEAT <compile_features>

  • OPTS <compile_options>

  • DEFS <compile_definitions>

Add a binary target with the given name via add_library.

Create an executable named as ///PROJECT:PACKAGE:name.

bottle_proto

  • NAME <name>

  • MSGS <message_list>

  • XCLD

Add a proto target with the given name via add_library.

Same with bottle_library except this will compile the message_list and link to @protobuf.

Make sure a @protobuf dependency target is created.

bottle_subdir

  • NAME <name>

  • XCLD

Add subdirectory named as name via add_subdirectory.

Same with add_subdirectory except this will link the package target of name to the current package ///PROJECT:PACKAGE if exists and not given XCLD.

bottle_expand

  • <expanded_name>

  • <name>

A helper command to expand a dependency name to the internal target expanded_name.

Dependency Expansion Rules

  • Prefix @ is used to mark external targets of current project.

    @TARGET expands to ${PROJECT_NAME}+deps+TARGET

  • Prefix /// is used to mark packages/targets built with other projects.

    ///PROJECT:PACKAGE[:TARGET] expands to PROJECT+PACKAGE[+TARGET]

  • Prefix // is used to mark packages/targets of current projects.

    //PACKAGE[:TARGET] expands to ${PROJECT_NAME}+PACKAGE[+TARGET]

  • Prefix : is used to mark targets within current package.

    Prefix / is used to mark subpackages/targets within current package.

    • :TARGET expands to ${PROJECT_NAME}+PACKAGE+TARGET.

    • /SUBPACKAGE[:TARGET] expands to ${PROJECT_NAME}+PACKAGE.SUBPACKAGE[+TARGET].

bottle's People

Contributors

ru-wang 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.