An open API service indexing awesome lists of open source software.

https://github.com/christhrasher/argon

Command line argument parser
https://github.com/christhrasher/argon

cpp

Last synced: about 1 year ago
JSON representation

Command line argument parser

Awesome Lists containing this project

README

          

# argon

[![CI](https://github.com/ChrisThrasher/argon/actions/workflows/ci.yml/badge.svg)](https://github.com/ChrisThrasher/argon/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/github/ChrisThrasher/argon/branch/master/graph/badge.svg?token=t85cTyvsez)](https://codecov.io/github/ChrisThrasher/argon)

Argon is a command line argument parser which supports optional and positional arguments.

Read the docs [here](https://christhrasher.github.io/argon/).

# Building and Installing

Here's how to build and install Argon on any platform.

```cmake
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
cmake --install build
```