cppship icon indicating copy to clipboard operation
cppship copied to clipboard

Cargo-like build tool for modern cpp

Results 4 cppship issues
Sort by recently updated
recently updated
newest added

debug: -g release: -O3 -DNDEBUG MinSizeRel: -Os -DNDEBUG RelWithDebInfo: -O2 -g -DNDEBUG

This adds support for creating the install destination, giving a user-defined install directory with `--root` option, and changes the default install directory to `~/.cppship/bin`.

I've implemented an index command for managing local conan recipe indexes. This makes it easy to add conan remotes from git repositories. For example: ``` $ cppship index add --name...