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.
49 lines
926 B
49 lines
926 B
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${MAL_INCLUDE_DIR}
|
|
)
|
|
|
|
set(conduit_mal_SRCS
|
|
mal-factory.cc
|
|
mal-setup.cc
|
|
mal-conduit.cc
|
|
)
|
|
|
|
set(conduit_mal_UIS
|
|
mal-setup_dialog.ui
|
|
)
|
|
|
|
set(conduit_mal_KCFGS
|
|
malconduitSettings.kcfgc
|
|
)
|
|
|
|
trinity_add_kcfg_files(conduit_mal_SRCS ${conduit_mal_KCFGS})
|
|
trinity_add_ui_files(conduit_mal_SRCS ${conduit_mal_UIS})
|
|
trinity_automoc(${conduit_mal_SRCS})
|
|
add_library(conduit_mal SHARED ${conduit_mal_SRCS})
|
|
target_link_libraries(conduit_mal ${MAL_LIBRARY})
|
|
|
|
set_target_properties(
|
|
conduit_mal PROPERTIES
|
|
LOCATION ${KDE3_PLUGIN_INSTALL_DIR}
|
|
PREFIX ""
|
|
INSTALL_RPATH "${MAL_LIBRARY}"
|
|
INSTALL_RPATH_USE_LINK_PATH true
|
|
)
|
|
|
|
trinity_install_libtool_file(conduit_mal)
|
|
|
|
install(
|
|
TARGETS conduit_mal
|
|
LIBRARY DESTINATION ${KDE3_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES mal_conduit.desktop DESTINATION ${KDE3_SERVICES_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES malconduit.kcfg DESTINATION ${KDE3_KCFG_DIR}
|
|
)
|
|
|