mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 16:48:21 +00:00
c34fe10f23
This commit also moved the SDL dependencies into the SDL backend so that -DENABLE_SDL=NO builds do not link against SDL.
25 lines
511 B
CMake
25 lines
511 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(displayserver_SDL LANGUAGES C)
|
|
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(DISPLAYSERVER_SDL_PKGCONFIG REQUIRED
|
|
sdl2
|
|
)
|
|
|
|
add_library(displayserver_SDL STATIC
|
|
sdl.c
|
|
)
|
|
|
|
target_link_libraries(displayserver_SDL
|
|
${DISPLAYSERVER_SDL_PKGCONFIG_LIBRARIES}
|
|
${DISPLAYSERVER_SDL_OPT_PKGCONFIG_LIBRARIES}
|
|
lg_common
|
|
)
|
|
|
|
target_include_directories(displayserver_SDL
|
|
PRIVATE
|
|
src
|
|
${DISPLAYSERVER_SDL_PKGCONFIG_INCLUDE_DIRS}
|
|
${DISPLAYSERVER_SDL_OPT_PKGCONFIG_INCLUDE_DIRS}
|
|
)
|