Skip to content
Snippets Groups Projects
Commit 0e2893e2 authored by luyikei's avatar luyikei
Browse files

CMakeLists: Use MLT

parent 29d4f557
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,17 @@ list(APPEND VLMC_LIBS ${LIBVLC_LIBRARIES} vlccore)
link_directories(${LIBVLC_LIBRARY_DIRS})
INCLUDE_DIRECTORIES(${LIBVLC_INCLUDE_DIRS})
# Find MLT Framework
pkg_check_modules(MLT REQUIRED mlt-framework>=6.3.0)
list(APPEND VLMC_LIBS ${MLT_LIBRARIES})
link_directories(${MLT_LIBRARY_DIRS})
INCLUDE_DIRECTORIES(${MLT_INCLUDE_DIRS})
pkg_check_modules(MLTPP REQUIRED mlt++>=6.3.0)
list(APPEND VLMC_LIBS ${MLTPP_LIBRARIES})
link_directories(${MLTPP_LIBRARY_DIRS})
INCLUDE_DIRECTORIES(${MLTPP_INCLUDE_DIRS})
FIND_PACKAGE(frei0r REQUIRED)
if(APPLE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment