diff options
author | Nicky Dasmijn <nicky.dasmijn@posteo.nl> | 2024-04-14 15:14:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-14 16:14:23 +0300 |
commit | 2d4de107f8fc3714f75f73fc9293c87eaf0e5acb (patch) | |
tree | 012498aa7cde84f31bcba6008bea223e7a7bf2ee /indra/cmake/LLWindow.cmake | |
parent | 286ef130349d45b13f613fd11eeb40f5fffdf259 (diff) |
Feature/linux gtk removal (#1225)
* GTK remnants removal
Remove old GTK code and wire up some missing fltk logic in llfilepicker
This will leave linux_crash_logger as an empy stub which could be used as a skeleton in case crash logging gets implemented.
Otherwise linux_crash_logger and what is left of it in some cmake files can be deleted.
* Update SDL2 to latest version.
This revealed openal has also a dependebcy on sndio. Consequently the dependency was moved to OPENMAL.cmake and canot be dropped.
* Handle missing filetypes:
FFSAVE_GLTF,FFLOAD_GLTF, FFLOAD_MATERIAL, FFLOAD_MATERIAL_TEXTURE
Diffstat (limited to 'indra/cmake/LLWindow.cmake')
-rw-r--r-- | indra/cmake/LLWindow.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/LLWindow.cmake b/indra/cmake/LLWindow.cmake index 6c7b70461f..23f4115aeb 100644 --- a/indra/cmake/LLWindow.cmake +++ b/indra/cmake/LLWindow.cmake @@ -16,5 +16,5 @@ if (LINUX) #target_link_libraries( ll::SDL INTERFACE SDL2::SDL2 SDL2::SDL2main X11) use_prebuilt_binary(SDL2) - target_link_libraries( ll::SDL INTERFACE SDL2 sndio X11) + target_link_libraries( ll::SDL INTERFACE SDL2 X11) endif (LINUX) |