aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Commandline.mli
Commit message (Collapse)AuthorAgeFilesLines
* Add `Commandline.longopt` function for options of the form `-<key>=<arg>`Xavier Leroy2022-09-231-0/+5
| | | | | Also: use `int_of_string_opt` instead of `int_of_string` for slightly cleaner code.
* Use the LGPL instead of the GPL for dual-licensed filesXavier Leroy2021-05-081-4/+5
| | | | | | The GPL makes sense for whole applications, but the dual-licensed Coq and OCaml files are more like libraries to be combined with other code, so the LGPL is more appropriate.
* Move Commandline to the lib/ directoryXavier Leroy2020-05-051-0/+55
The Commandline module is reusable in other projects, and its license (GPL) allows such reuse, so its natural place is in lib/ rather than in driver/