mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
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>
23 lines
590 B
Makefile
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))
|