You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
454 B
26 lines
454 B
include_directories(
|
|
${WAYLAND_INCLUDE_DIR}
|
|
)
|
|
|
|
set(sources
|
|
session.c
|
|
direct.c
|
|
)
|
|
|
|
set(libs
|
|
wlr-util
|
|
${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})
|