Commit 6c586bf5 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

cmake: FindCurses.

parent 377173c5
...@@ -18,10 +18,12 @@ set(VLC_VERSION_MAJOR 0) ...@@ -18,10 +18,12 @@ set(VLC_VERSION_MAJOR 0)
set(VLC_VERSION_MINOR 9) set(VLC_VERSION_MINOR 9)
set(VLC_VERSION_PATCH 0) set(VLC_VERSION_PATCH 0)
set(VLC_VERSION_EXTRA "-svn") set(VLC_VERSION_EXTRA "-svn")
set(VLC_VERSION ${VLC_VERSION_MAJOR}.${VLC_VERSION_MINOR}.${VLC_VERSION_PATCH}${VLC_VERSION_EXTRA})
set(PACKAGE "vlc") set(PACKAGE "vlc")
set(PACKAGE_VERSION "${VLC_VERSION}")
set(PACKAGE_STRING "vlc") set(PACKAGE_STRING "vlc")
set(VERSION_MESSAGE "vlc-${VLC_VERSION_MAJOR}.${VLC_VERSION_MINOR}.${VLC_VERSION_PATCH}${VLC_VERSION_EXTRA}") set(VERSION_MESSAGE "vlc-${VLC_VERSION}")
set(COPYRIGHT_MESSAGE "Copyright © the VideoLAN team") set(COPYRIGHT_MESSAGE "Copyright © the VideoLAN team")
set(COPYRIGHT_YEARS "2001-2008") set(COPYRIGHT_YEARS "2001-2008")
...@@ -467,13 +469,19 @@ if(Matroska_FOUND) ...@@ -467,13 +469,19 @@ if(Matroska_FOUND)
vlc_module_add_link_libraries(mkv ${Matroska_LIBRARIES}) vlc_module_add_link_libraries(mkv ${Matroska_LIBRARIES})
endif(Matroska_FOUND) endif(Matroska_FOUND)
find_package(Live555 0.7.7) find_package(Live555)
if(Live555_FOUND) if(Live555_FOUND)
vlc_enable_modules(live555) vlc_enable_modules(live555)
vlc_add_module_compile_flag(live555 ${Live555_CFLAGS}) vlc_add_module_compile_flag(live555 ${Live555_CFLAGS})
vlc_module_add_link_libraries(live555 ${Live555_LIBRARIES}) vlc_module_add_link_libraries(live555 ${Live555_LIBRARIES})
endif(Live555_FOUND) endif(Live555_FOUND)
find_package(Curses)
if(CURSES_LIBRARIES)
vlc_enable_modules(ncurses)
vlc_module_add_link_libraries(ncurses ${CURSES_LIBRARIES})
endif(CURSES_LIBRARIES)
set(CMAKE_REQUIRED_INCLUDES) set(CMAKE_REQUIRED_INCLUDES)
########################################################### ###########################################################
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment