nickdiego / compiledb

Tool for generating Clang's JSON Compilation Database files for make-based build systems.
GNU General Public License v3.0
1.38k stars 123 forks source link

Refactor command parser to use OptParse/ArgParse python module #44

Closed nickdiego closed 6 years ago

nickdiego commented 6 years ago

Once the compilation command line and the compiler command is detected we could use python std modules OptParse or ArgParse to parse the command line options, then earning benefits such as simplifying parsing code, reducing the number of bugs, among others.