aboutsummaryrefslogtreecommitdiff
path: root/cmake/platform/osx/osx.cmake
blob: 5f911d121e7f9d3774ec7c51e8ba9b7aa3e852c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if(NOT APP_RENDER_SYSTEM OR APP_RENDER_SYSTEM STREQUAL "gl")
  list(APPEND PLATFORM_REQUIRED_DEPS OpenGl)
  set(APP_RENDER_SYSTEM gl)
  list(APPEND SYSTEM_DEFINES -DGL_DO_NOT_WARN_IF_MULTI_GL_VERSION_HEADERS_INCLUDED)
else()
  message(SEND_ERROR "Currently only OpenGL rendering is supported. Please set APP_RENDER_SYSTEM to \"gl\"")
endif()

if(NOT APP_WINDOW_SYSTEM OR APP_WINDOW_SYSTEM STREQUAL sdl)
  list(APPEND SYSTEM_DEFINES -DHAS_SDL)
  list(APPEND PLATFORM_REQUIRED_DEPS Sdl)
  list(APPEND CORE_MAIN_SOURCE ${CMAKE_SOURCE_DIR}/xbmc/platform/darwin/osx/SDL/SDLMain.mm
                               ${CMAKE_SOURCE_DIR}/xbmc/platform/posix/main.cpp)
else()
  message(SEND_ERROR "Currently only SDL windowing is supported. Please set APP_WINDOW_SYSTEM to \"sdl\"")
endif()