[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / rendering / CMakeLists.txt
blob94ab0720399d14f1d8a9081b6229b0d9a9c3f07b
1 set(SOURCES RenderSystem.cpp)
3 set(HEADERS RenderSystem.h
4             RenderSystemTypes.h)
6 if(TARGET ${APP_NAME_LC}::OpenGl OR TARGET ${APP_NAME_LC}::OpenGLES)
7   list(APPEND SOURCES MatrixGL.cpp)
8   list(APPEND HEADERS MatrixGL.h)
10   if(ARCH MATCHES arm AND ENABLE_NEON)
11     list(APPEND SOURCES MatrixGL.neon.cpp)
12     if(NOT DEFINED NEON_FLAGS)
13       set_source_files_properties(MatrixGL.neon.cpp PROPERTIES COMPILE_OPTIONS -mfpu=neon)
14     endif()
15   endif()
16 endif()
18 core_add_library(rendering)
19 if(NOT CORE_SYSTEM_NAME STREQUAL windows AND NOT CORE_SYSTEM_NAME STREQUAL windowsstore)
20   if(HAVE_SSE)
21     target_compile_options(${CORE_LIBRARY} PRIVATE -msse)
22   endif()
23   if(HAVE_SSE2)
24     target_compile_options(${CORE_LIBRARY} PRIVATE -msse2)
25   endif()
26 endif()