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);