Files
rpi-buildroot/package/sqlitecpp/sqlitecpp.mk
Michael Nosthoff ae61cc15d9 package/sqlitecpp: bump to version 3.3.3
- fixes a build issue with gcc-15
- license hash updated due to year change

Release Notes: https://github.com/SRombauts/SQLiteCpp/releases/tag/3.3.3

Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
[Julien: add missing "Signed-off-by:"]
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-05-26 21:40:09 +02:00

20 lines
551 B
Makefile

################################################################################
#
# SQLiteC++
#
################################################################################
SQLITECPP_VERSION = 3.3.3
SQLITECPP_SITE = $(call github,SRombauts,SQLiteCpp,$(SQLITECPP_VERSION))
SQLITECPP_LICENSE = MIT
SQLITECPP_LICENSE_FILES = LICENSE.txt
SQLITECPP_DEPENDENCIES = sqlite
SQLITECPP_INSTALL_STAGING = YES
SQLITECPP_CONF_OPTS = \
-DSQLITECPP_INTERNAL_SQLITE=OFF \
-DSQLITECPP_RUN_CPPLINT=OFF \
-DSQLITECPP_RUN_CPPCHECK=OFF
$(eval $(cmake-package))