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.
wilder/Plasma/6.2
Joshua Goins 2 years ago committed by Vlad Zahorodnii
parent 2e6619f3d0
commit c3d3d83b56
  1. 1
      src/KWinConfig.cmake.in

@ -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…
Cancel
Save