aboutsummaryrefslogtreecommitdiff
path: root/xbmc/windowing/linux/CMakeLists.txt
blob: b6349047d333215bebab85d574faadcffdb1ce34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
set(SOURCES "")
set(HEADERS "")

if(TARGET DBus::DBus)
  list(APPEND SOURCES OSScreenSaverFreedesktop.cpp)
  list(APPEND HEADERS OSScreenSaverFreedesktop.h)
endif()

if(TARGET EGL::EGL)
  list(APPEND SOURCES WinSystemEGL.cpp)
  list(APPEND HEADERS WinSystemEGL.h)
endif()

if(SOURCES)
  core_add_library(windowing_linux)
endif()