How to support commandline syntax “-DEVICE:iphone”

2019-06-19 00:09发布

问题:

The default syntax for Boost::Program_Options is "--DEVICE iphone". How can I support syntax "-DEVICE:iphone" or "-DEVICE=iphone"?

回答1:

Boost.Program_Options has a pretty large number of option styles. The particular combination you seem to be going for would be:

command_line_style::long_allow_adjacent |
command_line_style::short_allow_adjacent |
command_line_style::allow_long_disguise

These options should be given to the style function of your command line parser:

    po::store(po::command_line_parser(argc, argv).style(<your styles here>).run(), vm);