mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-29 16:05:59 +01:00
25 lines
443 B
Text
25 lines
443 B
Text
|
include_directories(
|
||
|
${WAYLAND_INCLUDE_DIR}
|
||
|
)
|
||
|
|
||
|
set(sources
|
||
|
session.c
|
||
|
)
|
||
|
|
||
|
set(libs
|
||
|
wlr-common
|
||
|
${WAYLAND_LIBRARIES}
|
||
|
)
|
||
|
|
||
|
if (SYSTEMD_FOUND)
|
||
|
add_definitions(${SYSTEMD_DEFINITIONS})
|
||
|
include_directories(${SYSTEMD_INCLUDE_DIRS})
|
||
|
|
||
|
add_definitions(-DHAS_SYSTEMD)
|
||
|
list(APPEND sources logind.c)
|
||
|
list(APPEND libs ${SYSTEMD_LIBRARIES})
|
||
|
endif ()
|
||
|
|
||
|
add_library(wlr-session ${sources})
|
||
|
target_link_libraries(wlr-session ${libs})
|