mirror of https://github.com/mgba-emu/mgba.git
Fix SDL2 library exporting
This commit is contained in:
parent
8d002913f0
commit
21ea47ea9e
|
@ -5,9 +5,9 @@ if (SDL_VERSION EQUAL "2")
|
|||
include(FindPkgConfig)
|
||||
pkg_search_module(SDL2 sdl2)
|
||||
if (SDL2_FOUND)
|
||||
set(SDL_INCLUDE_DIR ${SDL2_INCLUDE_DIRS})
|
||||
set(SDL_LIBRARY ${SDL2_LIBRARIES})
|
||||
set(SDLMAIN_LIBRARY "")
|
||||
set(SDL_INCLUDE_DIR ${SDL2_INCLUDE_DIRS} CACHE INTERNAL "")
|
||||
set(SDL_LIBRARY ${SDL2_LIBRARIES} CACHE INTERNAL "")
|
||||
set(SDLMAIN_LIBRARY "" CACHE INTERNAL "")
|
||||
link_directories(${SDL2_LIBDIR})
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue