kumquat-buildroot/package/spdlog/spdlog.mk
Asaf Kahlon 10146e2fb5 package/spdlog: bump to version 1.6.1
License was updated with little rephrasings, typo fixes,
and a note about using fmt as a third party library under the
MIT license.

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-06-17 22:56:44 +02:00

23 lines
578 B
Makefile

################################################################################
#
# spdlog
#
################################################################################
SPDLOG_VERSION = 1.6.1
SPDLOG_SITE = $(call github,gabime,spdlog,v$(SPDLOG_VERSION))
SPDLOG_LICENSE = MIT
SPDLOG_LICENSE_FILES = LICENSE
SPDLOG_DEPENDENCIES = fmt
SPDLOG_CONF_OPTS += \
-DSPDLOG_BUILD_TESTS=OFF \
-DSPDLOG_BUILD_EXAMPLE=OFF \
-DSPDLOG_BUILD_BENCH=OFF \
-DSPDLOG_FMT_EXTERNAL=ON
# Header-only library
SPDLOG_INSTALL_STAGING = YES
SPDLOG_INSTALL_TARGET = NO
$(eval $(cmake-package))