Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ccbrown/needy

A C++ library dependency helper.
https://github.com/ccbrown/needy

cli cpp dependancy-manager python

Last synced: about 2 months ago
JSON representation

A C++ library dependency helper.

Awesome Lists containing this project

README

        

Needy [![Build Status](https://travis-ci.org/ccbrown/needy.svg?branch=master)](https://travis-ci.org/ccbrown/needy) [![Build status](https://ci.appveyor.com/api/projects/status/t5fcl5fhtn08wy9c/branch/master?svg=true)](https://ci.appveyor.com/project/ccbrown/needy/branch/master) [![codecov](https://codecov.io/gh/ccbrown/needy/branch/master/graph/badge.svg)](https://codecov.io/gh/ccbrown/needy) [![Documentation](https://img.shields.io/badge/docs-available-brightgreen.svg)](https://ccbrown.github.com/needy) [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/ccbrown/needy/master/LICENSE)
==

Needy is tool that aims to make C++ library dependencies as magical as possible. Dependencies are declared in a file known as the "needs file", usually by simply adding a source URI. Then Needy will download and build those dependencies for you.

For example, by creating a *needs.yaml* file in your project that looks like this:

```yaml
libraries:
catch:
repository: [email protected]:philsquared/Catch.git
commit: v1.3.0
```

You can then use a simple command invocation (`needy satisfy`) to download and build [Catch](https://github.com/philsquared/Catch) for your target platforms. Once integrated with your build system, adding, updating, or modifying dependencies in any way becomes a trivial matter.

Needy is extremely capable, so be sure to check out the examples directory or [the documentation](https://ccbrown.github.com/needy) to see some more things you can do.