~ubuntu-branches/ubuntu/intrepid/kdemultimedia/intrepid-updates

« back to all changes in this revision

Viewing changes to libkcompactdisc/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2008-07-12 13:07:42 UTC
  • mfrom: (1.2.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20080712130742-rpptq2hakyn2y0zj
Tags: 4:4.0.98-0ubuntu1
* New upstream release candidate
* Bump Standards-Version to 3.8.0
* -dbg depends kdemultimedia

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        wmlib/drv_toshiba.c
33
33
)
34
34
 
35
 
if (APPLE OR MSVC)
 
35
if (APPLE OR WIN32)
36
36
        set(USE_WMLIB false)
37
 
else (APPLE OR MSVC)
 
37
else (APPLE OR WIN32)
38
38
        set(USE_WMLIB true)
39
 
endif (APPLE OR MSVC)
 
39
endif (APPLE OR WIN32)
40
40
 
41
41
set(kcompactdisc_LIB_SRCS kcompactdisc.cpp kcompactdisc_p.cpp phonon_interface.cpp)
42
42
 
47
47
 
48
48
kde4_add_library(kcompactdisc SHARED ${kcompactdisc_LIB_SRCS})
49
49
 
50
 
target_link_libraries(kcompactdisc ${KDE4_KIO_LIBS} ${KDE4_PHONON_LIBS})
 
50
target_link_libraries(kcompactdisc ${KDE4_KIO_LIBS} ${KDE4_PHONON_LIBS} ${KDE4_SOLID_LIBS})
51
51
if (HAVE_LIBASOUND2)
52
52
    target_link_libraries(kcompactdisc ${ASOUND_LIBRARY})
53
53
endif (HAVE_LIBASOUND2)
58
58
 
59
59
########### install files ###############
60
60
 
61
 
install( FILES kcompactdisc.h  DESTINATION ${INCLUDE_INSTALL_DIR}/libkcompactdisc)
 
61
install( FILES kcompactdisc.h  DESTINATION ${INCLUDE_INSTALL_DIR}/libkcompactdisc COMPONENT Devel)
62
62