Philip Top

Results 297 comments of Philip Top

When the build files are generated through CMake Catch2 should be automatically downloaded if it is not found on the system.

See #462 for some other discussion on this. I think it would be fairly challenging to add support without breaking a bunch of other stuff, but as long as the...

What I have done in similar cases is create two parsing apps. The first handles the outer options and allows extra arguments. The second then gets dynamically generated after the...

``` app.allow_extras() ``` tells CLI11 to just ignore any extra options it encounters and store them in a vector. Then remaining(), or `remaining_for_passthrough()` will retrieve them.

I don't think there are any plans to change this. The best option is likely to be separate flags that assign to the same variable like you did. supporting it...

One thing I have been wondering is if the default behavior of summing the flags with an integer output should be turned off in favor of take last if flags...

I think it might make sense to change the default behavior slightly for the summing flags in 2.0 but otherwise I think it is ok for the time being. I...

CLI supports and `allow_extras()` option on the main app for parsing. this allows later retrieval through `remaining()` or `remaining_for_passthrough()`

I think the only behavior is to validate the arguments 1 at a time, so no changing that nor do I think it would be practical to do so. However,...