Changeset 4c9c58adeed94ea5e308cb6e40980319c8ca162d

Show
Ignore:
Timestamp:
19/04/08 04:35:03 (6 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208572503 +0200
git-parent:

[45198f52783fe77620587fcb440b07e4a39bc843]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208572503 +0200
Message:

cmake: Detect taglib.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/buildsystem/cmake/include/config.cmake

    r45198f5 r4c9c58a  
    601601endif(HAVE_ID3TAG_H AND HAVE_ZLIB_H) 
    602602 
     603find_package(Taglib) 
     604if(Taglib_FOUND) 
     605  set(HAVE_TAGLIB 1) 
     606  vlc_enable_modules(taglib) 
     607  vlc_module_add_link_libraries(taglib "${Taglib_LIBRARIES};z") 
     608  vlc_add_module_compile_flag(taglib "${Taglib_CFLAGS}") 
     609endif(Taglib_FOUND) 
     610 
     611vlc_check_include_files (zlib.h) 
     612if(HAVE_ZLIB_H) 
     613  vlc_module_add_link_libraries(access_http z) 
     614endif(HAVE_ZLIB_H) 
     615 
    603616set(CMAKE_REQUIRED_INCLUDES) 
    604617