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/OPENAL.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/OPENAL.cmake')
-rw-r--r-- | indra/cmake/OPENAL.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/cmake/OPENAL.cmake b/indra/cmake/OPENAL.cmake index 0b6a7c2853..6a28846029 100644 --- a/indra/cmake/OPENAL.cmake +++ b/indra/cmake/OPENAL.cmake @@ -31,6 +31,7 @@ if (USE_OPENAL) target_link_libraries( ll::openal INTERFACE openal alut + sndio ) else() message(FATAL_ERROR "OpenAL is not available for this platform") |