0d9fcee763
- Update to version 0.9.9.8 Features: * Added GLM_EXT_vector_intX* and GLM_EXT_vector_uintX* extensions * Added GLM_EXT_matrix_intX* and GLM_EXT_matrix_uintX* extensions Improvements: * Added clamp, repeat, mirrorClamp and mirrorRepeat function to GLM_EXT_scalar_commond and GLM_EXT_vector_commond extensions with tests Fixes: * Fixed unnecessary warnings from matrix_projection.inl * Fixed quaternion slerp overload which interpolates with extra spins * Fixed for glm::length using arch64 * Fixed singularity check for quatLookAt version 0.9.9.7 Improvements: * Improved Neon support with more functions optimized * Added CMake GLM interface * Added fma implementation based on std::fma * Added missing quat constexpr * Added GLM_FORCE_QUAT_DATA_WXYZ to store quat data as w,x,y,z instead of x,y,z,w Fixes: * Fixed equal ULP variation when using negative sign * Fixed for intersection ray/plane and added related tests * Fixed ARM 64bit detection * Fixed GLM_EXT_matrix_clip_space warnings * Fixed Wimplicit-int-float-conversion warnings with clang 10+ * Fixed EXT_matrix_clip_space perspectiveFov version 0.9.9.6 Features: * Added Neon support to glm * Added SYCL support * Added EXT_scalar_integer extension with power of two and multiple scalar functions * Added EXT_vector_integer extension with power of two and multiple vector functions Improvements: * Added missing genType check for bitCount and bitfieldReverse Fixes: * Fixed for g++6 where -std=c++1z sets __cplusplus to 201500 instead of 201402 * Fixed hash hashes qua instead of tquat * Fixed .natvis as structs renamed * Fixed ldexp and frexp declaration * Fixed missing const to quaternion conversion operators * Fixed EXT_scalar_ulp and EXT_vector_ulp API coding style * Fixed quaternion componant order: w, {x, y, z} * Fixed GLM_HAS_CXX11_STL broken on Clang with Linux * Fixed Clang or GCC build due to wrong GLM_HAS_IF_CONSTEXPR definition * Fixed CUDA 9 build - Drop glm-cmake-config.patch (no longer applies) - Add glm-0.9.9.8-install.patch (courtesy of Fedora), glm-0.9.9.8-pkgconfig.patch and glm-0.9.9.8-fix_tests_big-endian.patch OBS-URL: https://build.opensuse.org/request/show/900879 OBS-URL: https://build.opensuse.org/package/show/science/glm?expand=0&rev=11
151 lines
5.4 KiB
Diff
151 lines
5.4 KiB
Diff
From 02f26a88537b0b02dd0df77fc858e9449c7e3847 Mon Sep 17 00:00:00 2001
|
|
From: Krzysztof Kurek <krzysio.kurek@pm.me>
|
|
Date: Sat, 30 Jan 2021 21:08:48 +0100
|
|
Subject: [PATCH] Add installation support from PR #1054
|
|
|
|
This is based on commit 887827b762111a8e6b4765513b4be212fa6a5426,
|
|
discovered from https://github.com/g-truc/glm/pull/1054
|
|
---
|
|
CMakeLists.txt | 16 ++++++++++++++--
|
|
cmake/glm/glmConfig-version.cmake | 11 -----------
|
|
cmake/glm/glmConfig.cmake | 22 ----------------------
|
|
glm/CMakeLists.txt | 10 +++++++++-
|
|
manual.md | 21 ++++++++++++++++++++-
|
|
5 files changed, 43 insertions(+), 37 deletions(-)
|
|
delete mode 100644 cmake/glm/glmConfig-version.cmake
|
|
delete mode 100644 cmake/glm/glmConfig.cmake
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 843e7546..642a5fde 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -3,13 +3,25 @@ cmake_policy(VERSION 3.2)
|
|
|
|
set(GLM_VERSION "0.9.9")
|
|
project(glm VERSION ${GLM_VERSION} LANGUAGES CXX)
|
|
-enable_testing()
|
|
+message(STATUS "GLM: Version " ${GLM_VERSION})
|
|
|
|
add_subdirectory(glm)
|
|
add_library(glm::glm ALIAS glm)
|
|
|
|
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
-add_subdirectory(test)
|
|
+ include(CPack)
|
|
+ install(DIRECTORY glm DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} PATTERN "CMakeLists.txt" EXCLUDE)
|
|
+ install(EXPORT glm FILE glmConfig.cmake DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/glm NAMESPACE glm::)
|
|
+ include(CMakePackageConfigHelpers)
|
|
+ write_basic_package_version_file("glmConfigVersion.cmake" COMPATIBILITY AnyNewerVersion)
|
|
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/glmConfigVersion.cmake DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/glm)
|
|
+
|
|
+ include(CTest)
|
|
+ if(BUILD_TESTING)
|
|
+ add_subdirectory(test)
|
|
+ endif()
|
|
|
|
endif(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
|
+
|
|
+
|
|
diff --git a/cmake/glm/glmConfig-version.cmake b/cmake/glm/glmConfig-version.cmake
|
|
deleted file mode 100644
|
|
index 6e63a4a3..00000000
|
|
--- a/cmake/glm/glmConfig-version.cmake
|
|
+++ /dev/null
|
|
@@ -1,11 +0,0 @@
|
|
-if(${PACKAGE_FIND_VERSION_MAJOR} EQUAL 0)
|
|
- if (${PACKAGE_FIND_VERSION} VERSION_LESS ${GLM_VERSION})
|
|
- set(PACKAGE_VERSION_COMPATIBLE 1)
|
|
- endif()
|
|
- if(${PACKAGE_FIND_VERSION} VERSION_EQUAL ${GLM_VERSION})
|
|
- set(PACKAGE_VERSION_EXACT 1)
|
|
- endif()
|
|
-else()
|
|
- set(PACKAGE_VERSION_UNSUITABLE 1)
|
|
-endif()
|
|
-
|
|
diff --git a/cmake/glm/glmConfig.cmake b/cmake/glm/glmConfig.cmake
|
|
deleted file mode 100644
|
|
index 4fba5116..00000000
|
|
--- a/cmake/glm/glmConfig.cmake
|
|
+++ /dev/null
|
|
@@ -1,22 +0,0 @@
|
|
-cmake_minimum_required(VERSION 3.2 FATAL_ERROR)
|
|
-cmake_policy(VERSION 3.2)
|
|
-
|
|
-set(GLM_VERSION 0.9.9)
|
|
-
|
|
-get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
-get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
-get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
-if (_IMPORT_PREFIX STREQUAL "/")
|
|
- set(_IMPORT_PREFIX "")
|
|
-endif()
|
|
-
|
|
-# Set the old GLM_INCLUDE_DIRS variable for backwards compatibility
|
|
-set(GLM_INCLUDE_DIRS ${_IMPORT_PREFIX})
|
|
-
|
|
-add_library(glm::glm INTERFACE IMPORTED)
|
|
-set_target_properties(glm::glm PROPERTIES
|
|
- INTERFACE_INCLUDE_DIRECTORIES ${GLM_INCLUDE_DIRS})
|
|
-
|
|
-mark_as_advanced(glm_DIR)
|
|
-set(_IMPORT_PREFIX)
|
|
-
|
|
diff --git a/glm/CMakeLists.txt b/glm/CMakeLists.txt
|
|
index 4ff51c81..cee0d2e7 100644
|
|
--- a/glm/CMakeLists.txt
|
|
+++ b/glm/CMakeLists.txt
|
|
@@ -43,7 +43,15 @@ source_group("SIMD Files" FILES ${SIMD_INLINE})
|
|
source_group("SIMD Files" FILES ${SIMD_HEADER})
|
|
|
|
add_library(glm INTERFACE)
|
|
-target_include_directories(glm INTERFACE ../)
|
|
+
|
|
+include(GNUInstallDirs)
|
|
+
|
|
+target_include_directories(glm INTERFACE
|
|
+ $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}>
|
|
+ $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
|
+)
|
|
+
|
|
+install(TARGETS glm EXPORT glm)
|
|
|
|
if(BUILD_STATIC_LIBS)
|
|
add_library(glm_static STATIC ${ROOT_TEXT} ${ROOT_MD} ${ROOT_NAT}
|
|
diff --git a/manual.md b/manual.md
|
|
index a7f6956f..d53df3d7 100644
|
|
--- a/manual.md
|
|
+++ b/manual.md
|
|
@@ -277,7 +277,26 @@ GLM does not depend on external libraries or headers such as `<GL/gl.h>`, [`<GL/
|
|
|
|
### <a name="section1_5"></a> 1.5. Finding GLM with CMake
|
|
|
|
-GLM packages a `glmConfig.cmake` and `glmConfig-version.cmake` in the root of the repository and the release archives. To find GLM with CMake you can pass `-Dglm_DIR=<path to glm root>/cmake/glm/` when running CMake. You can then either add `${GLM_INCLUDE_DIRS}` to your target's include directories, or link against the imported `glm::glm` target.
|
|
+When installed, GLM provides the CMake package configuration files `glmConfig.cmake` and `glmConfigVersion.cmake`.
|
|
+
|
|
+To use these configurations files, you may need to set the `glm_DIR` variable to the directory containing the configuration files `<installation prefix>/lib/cmake/glm/`.
|
|
+
|
|
+Use the `find_package` CMake command to load the configurations into your project. Lastly, either link your executable against the `glm::glm` target or add `${GLM_INCLUDE_DIRS}` to your target's include directories:
|
|
+
|
|
+```cmake
|
|
+set(glm_DIR <installation prefix>/lib/cmake/glm) # if necessary
|
|
+find_package(glm REQUIRED)
|
|
+target_link_libraries(<your executable> glm::glm)
|
|
+```
|
|
+
|
|
+To use GLM as a submodule in a project instead, use `add_subdirectory` to expose the same target, or add the directory to your target's
|
|
+
|
|
+```cmake
|
|
+add_subdirectory(glm)
|
|
+target_link_libraries(<your executable> glm::glm)
|
|
+# or
|
|
+target_include_directories(<your executable> glm)
|
|
+```
|
|
|
|
---
|
|
<div style="page-break-after: always;"> </div>
|
|
--
|
|
2.29.2
|
|
|