2014-11-19 02:23:05 +00:00
|
|
|
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
|
|
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
|
|
|
|
include_directories( .. )
|
|
|
|
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(ffmpegthumbtest_SRCS ffmpegthumbtest.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/filmstripfilter.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/moviedecoder.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/imagewriter.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/videothumbnailer.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-09-02 02:13:50 +03:00
|
|
|
add_executable(ffmpegthumbtest ${ffmpegthumbtest_SRCS} )
|
2014-11-19 02:23:05 +00:00
|
|
|
|
|
|
|
target_link_libraries(ffmpegthumbtest ${KDE4_KDECORE_LIBS} ${KDE4_KIO_LIBS} ${AVUTIL_LIBRARIES} ${AVFORMAT_LIBRARIES} ${AVCODEC_LIBRARIES} ${SWSCALE_LIBRARIES})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|