~renatofilho/mediaplayer-app/fix-1230404

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: Tarmac
  • Author(s): Jim Hodapp, Renato Araujo Oliveira Filho, Sergio Schvezov
  • Date: 2013-09-26 04:54:16 UTC
  • mfrom: (138.1.11 disable-sceneselector)
  • Revision ID: tarmac-20130926045416-mnjo5488u2fe4yq2
* Drop support for thumbnail as we can't depend on gstreamer directly until qtmultimedia supports gst1.0 (currently only the -touch fork supports it)
* Remove gstreamer related packages from build-dependencies.

Approved by PS Jenkins bot, Ricardo Salveti.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
include_directories(
6
6
    ${CMAKE_BINARY_DIR}
7
7
    ${sdkhelper_SOURCE_DIR}
8
 
    ${GSTLIB_INCLUDE_DIRS}
 
8
    #${GSTLIB_INCLUDE_DIRS}
9
9
    )
10
10
 
11
11
set(mediaplayer_HDRS
12
 
    thumbnail-provider.h
13
 
    thumbnail-pipeline-gst.h
 
12
    #thumbnail-provider.h
 
13
    #thumbnail-pipeline-gst.h
14
14
    mediaplayer.h)
15
15
 
16
16
set(mediaplayer_SRCS
17
 
    thumbnail-provider.cpp
18
 
    thumbnail-pipeline-gst.cpp
 
17
    #thumbnail-provider.cpp
 
18
    #thumbnail-pipeline-gst.cpp
19
19
    mediaplayer.cpp
20
20
    main.cpp)
21
21
 
28
28
 
29
29
target_link_libraries(${MEDIAPLAYER}
30
30
    sdkhelper
31
 
    ${GSTLIB_LDFLAGS}
 
31
    #${GSTLIB_LDFLAGS}
32
32
    )
33
33
 
34
34
install(TARGETS ${MEDIAPLAYER}