kumquat-buildroot/package/glm/glm.mk
Fabrice Fontaine 01ad113431 package/glm: bump to version 0.9.9.8
License is in a separate file since
347f422b9f

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-01-02 21:05:43 +01:00

24 lines
619 B
Makefile

################################################################################
#
# glm
#
################################################################################
GLM_VERSION = 0.9.9.8
GLM_SITE = $(call github,g-truc,glm,$(GLM_VERSION))
GLM_LICENSE = MIT
GLM_LICENSE_FILES = copying.txt
# GLM is a header-only library, it only makes sense
# to have it installed into the staging directory.
GLM_INSTALL_STAGING = YES
GLM_INSTALL_TARGET = NO
# Don't build libraries as GLM is header-only
GLM_CONF_OPTS = \
-DGLM_TEST_ENABLE=OFF \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_STATIC_LIBS=OFF
$(eval $(cmake-package))