mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 13:18:36 -09:00
A Modern C++ header-only library for parsing command-line arguments. https://github.com/p-ranav/argparse Signed-off-by: Konstantin Menyaev <viper@landau.one> Signed-off-by: Julien Olivain <ju.o@free.fr>
17 lines
526 B
Makefile
17 lines
526 B
Makefile
################################################################################
|
|
#
|
|
# cpp-argparse
|
|
#
|
|
################################################################################
|
|
|
|
CPP_ARGPARSE_VERSION = 3.2
|
|
CPP_ARGPARSE_SITE = $(call github,p-ranav,argparse,v$(CPP_ARGPARSE_VERSION))
|
|
CPP_ARGPARSE_LICENSE = MIT
|
|
CPP_ARGPARSE_LICENSE_FILES = LICENSE
|
|
CPP_ARGPARSE_INSTALL_STAGING = YES
|
|
CPP_ARGPARSE_INSTALL_TARGET = NO
|
|
|
|
CPP_ARGPARSE_CONF_OPTS = -DARGPARSE_BUILD_SAMPLES=OFF -DARGPARSE_BUILD_TESTS=OFF
|
|
|
|
$(eval $(cmake-package))
|