author | Gianfranco Costamagna <costamagnagianfranco@yahoo.it> |
Tue, 07 Jan 2014 11:40:58 +0100 | |
changeset 9949 | 2aa9cf5badfc |
parent 9224 | bce8cf41d666 |
child 9959 | 1a42d36f346a |
permissions | -rw-r--r-- |
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 |