You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Command line interfaces are a great way to prototype new projects
Command line interfaces are a common and very valuable way to distribute C++ code, and therefore establishing best practices for how Mapbox devs develop C++ CLI interfaces is important for scaling our work.
At the same time this project has been dormant, in my mind, because:
https://github.com/mapbox/hpp-skel, because it contains benchmarks and unit tests executables, already has two types of "cli" examples, and therefore is fairly useful for using to prototype (no need for this separate cpp-cli-skel)
Most serious command line tools end up needing to parse options, and option parsing in C++ requires an external dependency, which raises the harder question of which external dependency, refs Add recommendations for option parsing cpp#35
Questions in my mind:
Should we put this project on ICE and clearly direct interested people to hpp-skel for prototyping for now?
Should we put time into investigating the ideal option parser and reboot 0.0.1 #2 with it and get things landed and working?
I see great value to cpp-cli-skel because:
At the same time this project has been dormant, in my mind, because:
Questions in my mind:
@mapbox/core-tech