File tree Expand file tree Collapse file tree 3 files changed +35
-1
lines changed Expand file tree Collapse file tree 3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1+ #.rst:
2+ # Findglm
3+ # ------------
4+ # Finds the OpenGL Mathematics (GLM) as a header only C++ mathematics library.
5+ #
6+ # This will define the following variables:
7+ #
8+ # GLM_FOUND - system has OpenGLES
9+ # GLM_INCLUDE_DIR - the OpenGLES include directory
10+ #
11+ # Note: Install was removed from GLM on version 0.9.9.6.
12+
13+ find_package (PkgConfig)
14+ if (PKG_CONFIG_FOUND)
15+ pkg_check_modules(PC_GLM glm QUIET )
16+ endif ()
17+
18+ find_path (GLM_INCLUDE_DIR glm.hpp
19+ PATHS ${PC_GLM_INCLUDEDIR}
20+ PATH_SUFFIXES glm)
21+
22+ include (FindPackageHandleStandardArgs)
23+ find_package_handle_standard_args(glm REQUIRED_VARS GLM_INCLUDE_DIR)
24+
25+ mark_as_advanced (GLM_INCLUDE_DIR)
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<addon
33 id =" visualization.fishbmc"
4- version =" 5.1.2 "
4+ version =" 5.1.3 "
55 name =" FishBMC"
66 provider-name =" 26elf" >
77 <requires >@ADDON_DEPENDS@</requires >
Original file line number Diff line number Diff line change 1+ 5.1.3 (2020-09-06)
2+ - Fix standalone build with newer glm versions (>= 0.9.9.6)
3+
4+ 5.1.2 (2019-10-09)
5+ - Remove not needed virtual from class
6+ - Cleanup debian package code
7+ - Add license name and source URL to addon.xml
8+ - Clean FindOpenGLES.cmake description
9+
1105.1.1 (2019-08-23)
211- Update .travis.yml to Leia
312- Add Jenkinsfile for test and binary repo upload
You can’t perform that action at this time.
0 commit comments