mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-23 22:31:46 +00:00
15 lines
238 B
CMake
15 lines
238 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
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(
|
|
"../../"
|
|
)
|