~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to ffmpegthumbs/tests/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
 
2
 
 
3
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
 
4
########### next target ###############
 
5
 
 
6
 
 
7
include_directories( .. )
 
8
 
 
9
 
 
10
########### next target ###############
 
11
set(ffmpegthumbtest_SRCS ffmpegthumbtest.cpp
 
12
        ${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer.cpp
 
13
        ${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/filmstripfilter.cpp
 
14
        ${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/moviedecoder.cpp
 
15
        ${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/imagewriter.cpp
 
16
        ${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/videothumbnailer.cpp
 
17
)
 
18
 
 
19
 
 
20
kde4_add_executable(ffmpegthumbtest ${ffmpegthumbtest_SRCS} )
 
21
 
 
22
target_link_libraries(ffmpegthumbtest ${KDE4_KDECORE_LIBS} ${KDE4_KIO_LIBS} ${AVUTIL_LIBRARIES} ${AVFORMAT_LIBRARIES} ${AVCODEC_LIBRARIES} ${SWSCALE_LIBRARIES})
 
23
 
 
24
 
 
25
 
 
26