Skip to content

Commit

Permalink
Merge pull request #431 from robotology/fixglmbis
Browse files Browse the repository at this point in the history
FindGLM: Fix check for non-existing variable GLM_CONFIG
  • Loading branch information
traversaro authored May 4, 2023
2 parents 3f7c121 + 6d0e321 commit 7377904
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased Patch]

## [0.15.2] - 2023-05-04
## [0.15.2] - 2023-05-05

### Fixed

* Make sure that FindGLM defines both `glm` and `glm::glm` imported targets (https://github.com/ami-iit/yarp-device-openxrheadset/issues/35, https://github.com/robotology/ycm/pull/430).
* Make sure that FindGLM defines both `glm` and `glm::glm` imported targets (https://github.com/ami-iit/yarp-device-openxrheadset/issues/35, https://github.com/robotology/ycm/pull/430, https://github.com/robotology/ycm/pull/431).

## [0.15.1] - 2023-01-10

Expand Down
2 changes: 1 addition & 1 deletion find-modules/FindGLM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ if(glm_FOUND)
set_target_properties(glm::glm PROPERTIES INTERFACE_LINK_LIBRARIES glm)
endif()

find_package_handle_standard_args(GLM DEFAULT_MSG GLM_CONFIG)
find_package_handle_standard_args(GLM DEFAULT_MSG glm_FOUND)
return()
endif()

Expand Down

0 comments on commit 7377904

Please sign in to comment.