cppship
cppship copied to clipboard
Cargo-like build tool for modern cpp
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...