8811
|
1 |
#FFMPEG/Libav libraries have been searched already in main CMakeLists.txt
|
|
2 |
|
|
3 |
# TODO: this check is only for SDL < 2
|
|
4 |
# fpc will take care of linking but we need to have this library installed
|
|
5 |
find_package(GLUT REQUIRED)
|
|
6 |
|
|
7 |
include_directories(${FFMPEG_INCLUDE_DIR})
|
|
8 |
|
9224
|
9 |
add_library(avwrapper avwrapper.c)
|
|
10 |
#TODO: find good VERSION and SOVERSION values
|
|
11 |
target_link_libraries(avwrapper ${FFMPEG_LIBRARIES})
|
|
12 |
install(TARGETS avwrapper RUNTIME DESTINATION ${target_binary_install_dir}
|
|
13 |
LIBRARY DESTINATION ${target_library_install_dir}
|
|
14 |
ARCHIVE DESTINATION ${target_library_install_dir})
|
8811
|
15 |
|