diff options
author | callum_linden <none@none> | 2016-05-06 17:43:47 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2016-05-06 17:43:47 -0700 |
commit | e11ab0240a0262fd722f04f104eabbf3949a8cef (patch) | |
tree | fac22a87de584be92dfb11b942d3fb7184c0c849 /indra/cmake | |
parent | 5a55ba8ce3dc2582cbad236d7357128a42fa4dd5 (diff) |
Moving to a private repo
Diffstat (limited to 'indra/cmake')
-rwxr-xr-x | indra/cmake/CMakeLists.txt | 1 | ||||
-rw-r--r-- | indra/cmake/LibVLCPlugin.cmake | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/indra/cmake/CMakeLists.txt b/indra/cmake/CMakeLists.txt index 3eed9cecba..4aca33e8d1 100755 --- a/indra/cmake/CMakeLists.txt +++ b/indra/cmake/CMakeLists.txt @@ -98,6 +98,7 @@ set(cmake_SOURCE_FILES Variables.cmake ViewerMiscLibs.cmake VisualLeakDetector.cmake + LibVLCPlugin.cmake XmlRpcEpi.cmake ZLIB.cmake ) diff --git a/indra/cmake/LibVLCPlugin.cmake b/indra/cmake/LibVLCPlugin.cmake new file mode 100644 index 0000000000..286a8d8d1b --- /dev/null +++ b/indra/cmake/LibVLCPlugin.cmake @@ -0,0 +1,16 @@ +# -*- cmake -*- +include(Linking) +include(Prebuilt) + +if (USESYSTEMLIBS) + set(LIBVLCPLUGIN OFF CACHE BOOL + "LIBVLCPLUGIN support for the llplugin/llmedia test apps.") +else (USESYSTEMLIBS) + set(LIBVLCPLUGIN ON CACHE BOOL + "LIBVLCPLUGIN support for the llplugin/llmedia test apps.") +endif (USESYSTEMLIBS) + +if (WINDOWS) +elseif (DARWIN) +elseif (LINUX) +endif (WINDOWS) |