mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
60 lines
1.3 KiB
CMake
60 lines
1.3 KiB
CMake
find_path(
|
|
WAYLAND_CLIENT_INCLUDE_DIR
|
|
NAMES wayland-client.h
|
|
)
|
|
|
|
find_library(
|
|
WAYLAND_CLIENT_LIBRARY
|
|
NAMES wayland-client libwayland-client
|
|
)
|
|
|
|
if(WAYLAND_CLIENT_INCLUDE_DIR AND WAYLAND_CLIENT_LIBRARY)
|
|
add_library(wayland::client UNKNOWN IMPORTED)
|
|
|
|
set_target_properties(
|
|
wayland::client PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${WAYLAND_CLIENT_INCLUDE_DIR}"
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
IMPORTED_LOCATION "${WAYLAND_CLIENT_LIBRARY}"
|
|
)
|
|
endif()
|
|
|
|
find_path(
|
|
WAYLAND_SERVER_INCLUDE_DIR
|
|
NAMES wayland-server.h
|
|
)
|
|
|
|
find_library(
|
|
WAYLAND_SERVER_LIBRARY
|
|
NAMES wayland-server libwayland-server
|
|
)
|
|
|
|
if(WAYLAND_SERVER_INCLUDE_DIR AND WAYLAND_SERVER_LIBRARY)
|
|
add_library(wayland::server UNKNOWN IMPORTED)
|
|
|
|
set_target_properties(
|
|
wayland::server PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${WAYLAND_SERVER_INCLUDE_DIR}"
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
IMPORTED_LOCATION "${WAYLAND_SERVER_LIBRARY}"
|
|
)
|
|
endif()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(
|
|
WAYLAND_CLIENT
|
|
REQUIRED_VARS WAYLAND_CLIENT_LIBRARY WAYLAND_CLIENT_INCLUDE_DIR
|
|
)
|
|
|
|
find_package_handle_standard_args(
|
|
WAYLAND_SERVER
|
|
REQUIRED_VARS WAYLAND_SERVER_LIBRARY WAYLAND_SERVER_INCLUDE_DIR
|
|
)
|
|
|
|
mark_as_advanced(
|
|
WAYLAND_CLIENT_INCLUDE_DIR
|
|
WAYLAND_CLIENT_LIBRARY
|
|
WAYLAND_SERVER_INCLUDE_DIR
|
|
WAYLAND_SERVER_LIBRARY
|
|
)
|