diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-12-17 08:22:48 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-12-17 08:38:31 +0800 |
commit | a8e888375101dfbf6d4060966ee788751ee4af95 (patch) | |
tree | daedf8b066136b68ea9b6e56ad660ff4d0f26237 /indra/media_plugins | |
parent | 08f186a700c3fe7976228468f137c920e343bb64 (diff) |
Bring back libvlc plugin to Linux & FreeBSD
I had forgotten to keep it compiled when doing the overhaul for CEF on
macOS.
Diffstat (limited to 'indra/media_plugins')
-rw-r--r-- | indra/media_plugins/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/media_plugins/CMakeLists.txt b/indra/media_plugins/CMakeLists.txt index 972bb7dd2d..fe0a0f0796 100644 --- a/indra/media_plugins/CMakeLists.txt +++ b/indra/media_plugins/CMakeLists.txt @@ -2,10 +2,10 @@ add_subdirectory(base) -if (LINUX) - #add_subdirectory(gstreamer010) +if (LINUX OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD") + add_subdirectory(libvlc) add_subdirectory(example) -endif (LINUX) +endif (LINUX OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD") if (DARWIN) add_subdirectory(cef) |