mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-26 07:17:23 +00:00
[client] ds: re-order as SDL is now the fallback
This commit is contained in:
parent
ca5c3938e4
commit
6f4a116942
@ -18,9 +18,6 @@ function(add_displayserver name)
|
|||||||
add_subdirectory(${name})
|
add_subdirectory(${name})
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
# SDL must be first as it's the default implementation!
|
|
||||||
add_displayserver(SDL)
|
|
||||||
|
|
||||||
# Add/remove displayservers here!
|
# Add/remove displayservers here!
|
||||||
if (ENABLE_X11)
|
if (ENABLE_X11)
|
||||||
add_displayserver(X11)
|
add_displayserver(X11)
|
||||||
@ -30,6 +27,9 @@ if (ENABLE_WAYLAND)
|
|||||||
add_displayserver(Wayland)
|
add_displayserver(Wayland)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# SDL must be last as it's the fallback implemntation
|
||||||
|
add_displayserver(SDL)
|
||||||
|
|
||||||
list(REMOVE_AT DISPLAYSERVERS 0)
|
list(REMOVE_AT DISPLAYSERVERS 0)
|
||||||
list(REMOVE_AT DISPLAYSERVERS_LINK 0)
|
list(REMOVE_AT DISPLAYSERVERS_LINK 0)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user