Skip to content

Commit

Permalink
CMake: SDL cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
endrift committed Jun 3, 2018
1 parent 2f33926 commit ff2fe50
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
8 changes: 2 additions & 6 deletions CMakeLists.txt
Expand Up @@ -878,10 +878,6 @@ endif()

if(BUILD_SDL)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/src/platform/sdl ${CMAKE_CURRENT_BINARY_DIR}/sdl)
# The SDL platform CMakeLists could decide to disable SDL, so check again before adding the define.
if(BUILD_SDL)
add_definitions(-DBUILD_SDL)
endif()
endif()

if(BUILD_QT)
Expand Down Expand Up @@ -936,7 +932,7 @@ if(BUILD_EXAMPLE)
target_link_libraries(${BINARY_NAME}-example-server ${BINARY_NAME})
set_target_properties(${BINARY_NAME}-example-server PROPERTIES COMPILE_DEFINITIONS "${OS_DEFINES};${FEATURE_DEFINES};${FUNCTION_DEFINES}")

if(BUILD_SDL)
if(FOUND_SDL)
add_executable(${BINARY_NAME}-example-client ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/example/client-server/client.c)
target_link_libraries(${BINARY_NAME}-example-client ${BINARY_NAME} ${SDL_LIBRARY} ${SDLMAIN_LIBRARY} ${OPENGL_LIBRARY} ${OPENGLES2_LIBRARY})
set_target_properties(${BINARY_NAME}-example-client PROPERTIES
Expand Down Expand Up @@ -1040,7 +1036,7 @@ if(BUILD_QT)
cpack_add_component(${BINARY_NAME}-qt GROUP qt DEPENDS base)
endif()

if(BUILD_SDL)
if(FOUND_SDL)
cpack_add_component_group(sdl PARENT_GROUP base)
cpack_add_component(${BINARY_NAME}-sdl GROUP sdl DEPENDS base)
endif()
Expand Down
6 changes: 2 additions & 4 deletions src/platform/qt/CMakeLists.txt
Expand Up @@ -6,9 +6,7 @@ set(PLATFORM_SRC)
set(QT_STATIC OFF)

if(BUILD_SDL)
if(NOT SDL_FOUND AND NOT SDL2_FOUND)
find_package(SDL 1.2 REQUIRED)
endif()
add_definitions(-DBUILD_SDL)
if(SDL2_FOUND)
link_directories(${SDL2_LIBDIR})
endif()
Expand All @@ -32,9 +30,9 @@ if(NOT BUILD_GL AND NOT BUILD_GLES2)
message(WARNING "OpenGL is recommended to build the Qt port")
endif()

set(FOUND_QT ${Qt5Widgets_FOUND} PARENT_SCOPE)
if(NOT Qt5Widgets_FOUND)
message(WARNING "Cannot find Qt modules")
set(BUILD_QT OFF PARENT_SCOPE)
return()
endif()

Expand Down
4 changes: 3 additions & 1 deletion src/platform/qt/main.cpp
Expand Up @@ -37,8 +37,10 @@ Q_IMPORT_PLUGIN(AVFServicePlugin);
using namespace QGBA;

int main(int argc, char* argv[]) {
#if defined(BUILD_SDL) && SDL_VERSION_ATLEAST(2, 0, 0)
#ifdef BUILD_SDL
#if SDL_VERSION_ATLEAST(2, 0, 0) // CPP does not shortcut function lookup
SDL_SetMainReady();
#endif
#endif

ConfigController configController;
Expand Down
10 changes: 6 additions & 4 deletions src/platform/sdl/CMakeLists.txt
Expand Up @@ -13,13 +13,15 @@ endif()

if(SDL_VERSION EQUAL "1.2" OR NOT SDL2_FOUND)
find_package(SDL 1.2)
set(SDL_VERSION "1.2" PARENT_SCOPE)
set(SDL_VERSION_DEBIAN "1.2debian")
set(USE_PIXMAN ON)
if(SDL_FOUND)
set(SDL_VERSION "1.2" PARENT_SCOPE)
set(SDL_VERSION_DEBIAN "1.2debian")
set(USE_PIXMAN ON)
endif()
endif()

if (NOT SDL2_FOUND AND NOT SDL_FOUND)
set(BUILD_SDL OFF PARENT_SCOPE)
set(SDL_FOUND OFF PARENT_SCOPE)
return()
endif()

Expand Down

0 comments on commit ff2fe50

Please sign in to comment.