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
- Host: GitHub
- URL: https://github.com/christhrasher/argon
- Owner: ChrisThrasher
- License: mit
- Created: 2020-11-14T06:39:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-30T00:08:56.000Z (over 1 year ago)
- Last Synced: 2025-03-18T11:01:50.504Z (about 1 year ago)
- Topics: cpp
- Language: C++
- Homepage:
- Size: 260 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# argon
[](https://github.com/ChrisThrasher/argon/actions/workflows/ci.yml)
[](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
```