diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-07-29 14:29:52 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-07-29 14:29:52 +0800 |
commit | c2e755287eee1e9c9af4f918b20a4b2fa5f361f7 (patch) | |
tree | 1ca6dc4d8b43e973f20a127cb60c6e168a80cb9e /indra/media_plugins | |
parent | 7fb72b646d7f13caa8e4ec392da09caf1ecd00f0 (diff) |
Start adding LibVLC support when using system libs
Streaming is not working yet, though. Until it's made sure that the
dynamic library and plugins needed are on the paths the executable is
expecting them to be.
Diffstat (limited to 'indra/media_plugins')
-rw-r--r-- | indra/media_plugins/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/media_plugins/CMakeLists.txt b/indra/media_plugins/CMakeLists.txt index 972bb7dd2d..726ccf90ed 100644 --- a/indra/media_plugins/CMakeLists.txt +++ b/indra/media_plugins/CMakeLists.txt @@ -2,6 +2,12 @@ add_subdirectory(base) +if (NOT (USE_AUTOBUILD_3P OR USE_CONAN)) + add_subdirectory(libvlc) + add_subdirectory(example) + return() +endif () + if (LINUX) #add_subdirectory(gstreamer010) add_subdirectory(example) |