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:
Joshua Goins 2024-01-14 12:44:30 -05:00 committed by Vlad Zahorodnii
parent 2e6619f3d0
commit c3d3d83b56

View file

@ -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")