[filesystem][SpecialProtocol] Removed assert from GetPath
[xbmc.git] / xbmc / windowing / X11 / CMakeLists.txt
blob91e13d6a410aced276b833957cca1ad487aa8c93
1 set(SOURCES GLContextEGL.cpp
2             GLContext.cpp
3             OptionalsReg.cpp
4             OSScreenSaverX11.cpp
5             WinEventsX11.cpp
6             WinSystemX11.cpp
7             XRandR.cpp
8             X11DPMSSupport.cpp)
10 set(HEADERS GLContext.h
11             GLContextEGL.h
12             OptionalsReg.h
13             OSScreenSaverX11.h
14             WinEventsX11.h
15             WinSystemX11.h
16             XRandR.h
17             X11DPMSSupport.h)
19 if(GLX_FOUND)
20   list(APPEND SOURCES GLContextGLX.cpp
21                       VideoSyncGLX.cpp)
22   list(APPEND HEADERS GLContextGLX.h
23                       VideoSyncGLX.h)
24 endif()
26 if(OPENGL_FOUND)
27   list(APPEND SOURCES WinSystemX11GLContext.cpp)
28   list(APPEND HEADERS WinSystemX11GLContext.h)
29   list(APPEND SOURCES VideoSyncOML.cpp)
30   list(APPEND HEADERS VideoSyncOML.h)
31 endif()
32 if(OPENGLES_FOUND)
33   list(APPEND SOURCES WinSystemX11GLESContext.cpp)
34   list(APPEND HEADERS WinSystemX11GLESContext.h)
35 endif()
37 core_add_library(windowing_X11)