Files
buildroot/package/glm/glm.mk
Bernd Kuhls 2fd520c8d5 package/glm: bump version to 1.0.1
Release notes: https://github.com/g-truc/glm/releases/tag/1.0.1

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2025-08-04 22:11:23 +02:00

23 lines
590 B
Makefile

################################################################################
#
# glm
#
################################################################################
GLM_VERSION = 1.0.1
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 \
-DGLM_BUILD_LIBRARY=OFF
$(eval $(cmake-package))