We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0858478 commit 842a729Copy full SHA for 842a729
external/qt/package.cmake
@@ -60,6 +60,18 @@ if (LINUX)
60
target_include_directories(${target} PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
61
endfunction()
62
endif()
63
+
64
+ find_package(WaylandProtocols QUIET)
65
+ if (NOT WaylandProtocols_FOUND)
66
+ set(WaylandProtocols_DATADIR ${third_party_loc}/wayland-protocols)
67
+ endif()
68
+ message(STATUS "Found WaylandProtocols: ${WaylandProtocols_DATADIR}")
69
70
+ find_package(PlasmaWaylandProtocols QUIET)
71
+ if (NOT PlasmaWaylandProtocols_FOUND)
72
+ set(PLASMA_WAYLAND_PROTOCOLS_DIR ${third_party_loc}/plasma-wayland-protocols/src/protocols)
73
74
+ message(STATUS "Found PlasmaWaylandProtocols: ${PLASMA_WAYLAND_PROTOCOLS_DIR}")
75
76
77
if ((NOT DESKTOP_APP_USE_PACKAGED
0 commit comments