mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-02-10 14:35:37 +00:00
![Geoffrey McRae](/assets/img/avatar_default.png)
This allows us to build with libdecor enabled as the selection to use it is decided upon at runtime if the compositor `gnome-shell` is detected. If the libdecor development headers are installed, by default it will now be compiled in unless overridden by the user at compile time.
15 lines
238 B
CMake
15 lines
238 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(wayland_desktop_xdg LANGUAGES C)
|
|
|
|
add_library(wayland_desktop_xdg STATIC
|
|
xdg.c
|
|
)
|
|
|
|
target_link_libraries(wayland_desktop_xdg
|
|
lg_common
|
|
wayland_protocol
|
|
)
|
|
|
|
include_directories(
|
|
"../../"
|
|
)
|