vote up 9 vote down star
2

I'd like to pass parameters to my C++ program in the following manner:

./myprog --setting=value

Are there any libraries which will help me to do this easily?

See also http://stackoverflow.com/questions/189972/argument-parsing-helpers-for-c-unix/191821

flag

5 Answers

vote up 19 vote down

Boost.Program_options

link|flag
vote up 10 vote down

GNU GetOpt.

link|flag
vote up 3 vote down

There are these tools in the GNU C Library, which includes GetOpt.

If you are using Qt and like the GetOpt interface, froglogic has published a nice interface here.

link|flag
vote up 3 vote down

argstream is quite similar to boost.program_option: it permits to bind variables to options, etc. However it does not handle options stored in a configuration file.

link|flag
vote up 2 vote down

And there's a Google library available.

Really, command-line parsing is "solved." Just pick one.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.