needy icon indicating copy to clipboard operation
needy copied to clipboard

A C++ library dependency helper.

Results 24 needy issues
Sort by recently updated
recently updated
newest added

Directory sources should watch their source directory for changes, and be considered out-of-date afterwards. Other sources might also use additional files or directories as inputs to their build, which should...

feature

... to ensure that b2 targets are rebuilt when the needs file changes.

optimization

It's often useful to run shell commands to query environment conditions prior to the rendering a needs file: ``` {% if platform == 'ios' %} {% set xcrun_platform = 'iphoneos'...

feature

Needy cache configuration is a configuration that would be great to have as a user or global setting instead of a per-project setting. Allow `.needyconfig` files to be used at...

feature

In many cases specific build tools are required for compilation on multiple architectures. Examples include NASM, YASM, and GNU make. Needy should provide a separate top-level directive for tools that...

feature
planned

If a library has a dependency on a host-only need, that relationship cannot currently be set. Needy should add support for declaring cross-platform dependencies.

feature

"Distribution" projects are projects that are already packaged and should essentially just be copied directly to `build_directory`. The purpose here would be to simplify the use of pre-build binaries and...

feature

Needy should support building independent needs by different concurrently-running instances of needy to allow for better integration with build systems that support parallel building of targets. A simple design might...

optimization

A comparison with Conan (https://conan.io/) would be great subject for the readme and/or docs.

If there's a problem with a build, this will save time by erroring out immediately, and making it really clear where the error occurred. Usage might look something like... ```...

feature