Skip to content

Commit

Permalink
Fix dependency resolvement (refs cginternals/openll-cpp#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
scheibel committed May 25, 2022
1 parent 988e360 commit 0ecd2f6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions globjects-config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
# glbinding-config.cmake overwrites the variable MODULE_NAMES
include(CMakeFindDependencyMacro)

find_dependency(glm)
find_dependency(glbinding)
if (NOT TARGET glm::glm)
find_dependency(glm)
endif ()
if (NOT TARGET glbinding::glbinding)
find_dependency(glbinding)
endif ()
find_package(Eigen3 3.3 QUIET)


Expand Down

0 comments on commit 0ecd2f6

Please sign in to comment.