Add missing find_dependency for epoxy
This is required by the KWin target, but was missing a find_dependency call. If any downstream project tried to link to the KWin::kwin target, it would fail because epoxy couldn't be found.
This commit is contained in:
parent
2e6619f3d0
commit
c3d3d83b56
1 changed files with 1 additions and 0 deletions
|
@ -8,6 +8,7 @@ find_dependency(KF6Config "@KF6_MIN_VERSION@")
|
|||
find_dependency(KF6CoreAddons "@KF6_MIN_VERSION@")
|
||||
find_dependency(KF6WindowSystem "@KF6_MIN_VERSION@")
|
||||
find_dependency(Wayland REQUIRED Server)
|
||||
find_dependency(epoxy)
|
||||
|
||||
@PACKAGE_SETUP_KWIN_AUTOMOC_VARIABLES@
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/KWinTargets.cmake")
|
||||
|
|
Loading…
Reference in a new issue