You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
58 lines
1.5 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}/tdeioslave/media/libmediacommon
|
|
${CMAKE_SOURCE_DIR}/tdeioslave/media/libmediacommon
|
|
${CMAKE_BINARY_DIR}
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
${HAL_INCLUDE_DIRS}
|
|
${DBUS_TQT_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
${DBUS_TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
|
|
##### other data ################################
|
|
|
|
install( FILES mediamanager.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded )
|
|
install( FILES mediabackend.desktop DESTINATION ${AUTOSTART_INSTALL_DIR} )
|
|
|
|
|
|
##### kded_mediamanager (module) ################
|
|
|
|
set( target kded_mediamanager )
|
|
|
|
if( WITH_HAL )
|
|
set( HAL_MEDIA_BACKEND halbackend.cpp linuxcdpolling.cpp )
|
|
set( HAL_MEDIA_LIBRARIES ${HAL_LIBRARIES} -lhal-storage ${DBUS_TQT_LIBRARIES} )
|
|
endif( )
|
|
|
|
if( WITH_TDEHWLIB )
|
|
set( TDEHWBACKEND tdehardwarebackend.cpp )
|
|
endif( WITH_TDEHWLIB )
|
|
|
|
tde_add_kpart( ${target} AUTOMOC
|
|
SOURCES
|
|
mediamanager.cpp mediamanager.skel medialist.cpp
|
|
backendbase.cpp fstabbackend.cpp removablebackend.cpp
|
|
decryptdialog.ui dialog.cpp
|
|
mediadirnotify.cpp mediadirnotify.skel
|
|
${HAL_MEDIA_BACKEND} ${TDEHWBACKEND}
|
|
LINK mediacommon-static tdeinit_kded-shared ${HAL_MEDIA_LIBRARIES}
|
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
|
)
|