Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ccbrown/needy
A C++ library dependency helper.
https://github.com/ccbrown/needy
cli cpp dependancy-manager python
Last synced: 26 days ago
JSON representation
A C++ library dependency helper.
- Host: GitHub
- URL: https://github.com/ccbrown/needy
- Owner: ccbrown
- License: mit
- Created: 2015-06-01T11:26:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-01T07:44:12.000Z (almost 8 years ago)
- Last Synced: 2024-11-24T19:46:55.979Z (28 days ago)
- Topics: cli, cpp, dependancy-manager, python
- Language: Python
- Homepage: https://ccbrown.github.io/needy/
- Size: 537 KB
- Stars: 55
- Watchers: 4
- Forks: 4
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.