Changeset 4c9c58adeed94ea5e308cb6e40980319c8ca162d
- 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
| r45198f5 |
r4c9c58a |
|
| 601 | 601 | endif(HAVE_ID3TAG_H AND HAVE_ZLIB_H) |
|---|
| 602 | 602 | |
|---|
| | 603 | find_package(Taglib) |
|---|
| | 604 | if(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}") |
|---|
| | 609 | endif(Taglib_FOUND) |
|---|
| | 610 | |
|---|
| | 611 | vlc_check_include_files (zlib.h) |
|---|
| | 612 | if(HAVE_ZLIB_H) |
|---|
| | 613 | vlc_module_add_link_libraries(access_http z) |
|---|
| | 614 | endif(HAVE_ZLIB_H) |
|---|
| | 615 | |
|---|
| 603 | 616 | set(CMAKE_REQUIRED_INCLUDES) |
|---|
| 604 | 617 | |
|---|