CmdParser icon indicating copy to clipboard operation
CmdParser copied to clipboard

A simple and lightweight command line parser using C++11.

Results 12 CmdParser issues
Sort by recently updated
recently updated
newest added

Based on the existing pull request on RAII, improved the resource alloction using shared ptr Solved exit() problem with template based Policy

Would be great if you can improve CMake like the following: ``` cmake_minimum_required(VERSION 3.9) project(cmdparser) add_library( ${PROJECT_NAME} INTERFACE cmdparser.hpp) target_include_directories( ${PROJECT_NAME} INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) ``` This will allow easier to use...