]> git.sesse.net Git - vlc/commitdiff
cmake: Find live555.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 9 Feb 2008 12:21:00 +0000 (12:21 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 9 Feb 2008 12:21:00 +0000 (12:21 +0000)
extras/buildsystem/cmake/include/FindLive555.cmake [new file with mode: 0644]
extras/buildsystem/cmake/include/config.cmake

diff --git a/extras/buildsystem/cmake/include/FindLive555.cmake b/extras/buildsystem/cmake/include/FindLive555.cmake
new file mode 100644 (file)
index 0000000..9e72baf
--- /dev/null
@@ -0,0 +1,46 @@
+# - Find library containing Live555()
+# The following variables are set if Live555 is found. If Live555 is not
+# found, Live555_FOUND is set to false.
+#  Live555_FOUND     - System has Live555.
+#  Live555_LIBRARIES - Link these to use Live555.
+#  Live555_CFLAGS - Link these to use Live555.
+
+
+if (NOT Live555_SEARCHED)
+    include(CheckLibraryExists)
+
+    set(Live555_SEARCHED TRUE CACHE INTERNAL "")
+    set(Live555_FOUND FALSE CACHE INTERNAL "")
+
+    pkg_check_modules(Live555 libLive555)
+
+    if (NOT Live555_FOUND)
+        set(Live555_LIBRARIES "")
+        foreach (library livemedia livemedia_pic)
+            find_library( ${library}_LIBRARY ${library} )
+            if (${library}_LIBRARY)
+              set(Live555_LIBRARIES "${library};${Live555_LIBRARIES}")
+              set(Live555_FOUND TRUE CACHE INTERNAL "")
+            endif (${library}_LIBRARY)
+        endforeach (library)
+        foreach (library groupsock_pic groupsock BasicUsageEnvironment_pic BasicUsageEnvironment UsageEnvironment_pic UsageEnvironment)
+            find_library( ${library}_LIBRARY ${library} )
+            if (${library}_LIBRARY)
+              set(Live555_LIBRARIES "${library};${Live555_LIBRARIES}")
+            endif (${library}_LIBRARY)
+        endforeach (library)
+        set(Live555_LIBRARIES "${Live555_LIBRARIES}" CACHE INTERNAL STRING)
+    endif (NOT Live555_FOUND)
+
+    if (Live555_FOUND)
+      if (NOT Live555_FIND_QUIETLY)
+        message(STATUS "Found Live555 in: ${Live555_LIBRARIES}")
+      endif (NOT Live555_FIND_QUIETLY)
+    else (Live555_FOUND)
+      if (Live555_FIND_REQUIRED)
+        message(FATAL_ERROR "Could not find the library containing Live555")
+      endif (Live555_FIND_REQUIRED)
+    endif (Live555_FOUND)
+
+    mark_as_advanced(Live555_LIBRARIES)
+endif(NOT Live555_SEARCHED)
index 9ed60fe3ff4d1fa501672f715941a50a61595f39..9e4d6882b0d5246a803f07968ec4f881b3e103f8 100644 (file)
@@ -460,6 +460,13 @@ if(Matroska_FOUND)
   vlc_module_add_link_libraries(mkv ${Matroska_LIBRARIES})
 endif(Matroska_FOUND)
 
+find_package(Live555 0.7.7)
+if(Live555_FOUND)
+  vlc_enable_modules(live555)
+  vlc_add_module_compile_flag(live555 ${Live555_CFLAGS})
+  vlc_module_add_link_libraries(live555 ${Live555_LIBRARIES})
+endif(Live555_FOUND)
+
 set(CMAKE_REQUIRED_INCLUDES)
 
 ###########################################################