Add docopt.cpp library that can be used to create intuitive command line interfaces with very little code by describing the valid calls using the (POSIX.1-2017) command line utility argument syntax. Signed-off-by: Eero Aaltonen <eero.aaltonen@vaisala.com> Reviewed-by: Angelo Compagnucci <angelo@amarulasolutions.com> Tested-by: Angelo Compagnucci <angelo@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14 lines
433 B
Makefile
14 lines
433 B
Makefile
################################################################################
|
|
#
|
|
# docopt.cpp
|
|
#
|
|
################################################################################
|
|
|
|
DOCOPT_CPP_VERSION = 0.6.3
|
|
DOCOPT_CPP_SITE = $(call github,docopt,docopt.cpp,v$(DOCOPT_CPP_VERSION))
|
|
DOCOPT_CPP_INSTALL_STAGING = YES
|
|
DOCOPT_CPP_LICENSE = BSL-1.0 or MIT
|
|
DOCOPT_CPP_LICENSE_FILES = LICENSE-Boost-1.0 LICENSE-MIT
|
|
|
|
$(eval $(cmake-package))
|