Warning, /network/konqueror/plugins/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 
0002 find_package(QtTextToSpeech ${QT_REQUIRED_VERSION} QUIET)
0003 set_package_properties(QtTextToSpeech PROPERTIES
0004       PURPOSE "Gives Konqueror a plugin to speak portions or all of a website")
0005 
0006 function (konqueror_install_plugin_in_namespaces name)
0007     install(TARGETS ${name} DESTINATION ${KDE_INSTALL_PLUGINDIR})
0008     install(FILES ${name}.rc DESTINATION ${KDE_INSTALL_DATADIR}/konqueror/partsrcfiles)
0009 
0010     # install the symlink in all the given nammespace, we do not want to duplicate the actual files
0011     set(namespace_list khtml/kpartplugins kwebkitpart/kpartplugins webenginepart/kpartplugins)
0012     foreach(INSTALL_NAMESPACE ${namespace_list})
0013         string(REPLACE "/" "_" install_namespace_file ${INSTALL_NAMESPACE})
0014         add_custom_command(TARGET ${name} POST_BUILD
0015                     COMMAND ${CMAKE_COMMAND} -E create_symlink ../../${name}.so ${CMAKE_CURRENT_BINARY_DIR}/${name}${install_namespace_file}.so)
0016         install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${name}${install_namespace_file}.so DESTINATION ${KDE_INSTALL_PLUGINDIR}/${INSTALL_NAMESPACE})
0017     endforeach()
0018 
0019 endfunction()
0020 
0021 add_subdirectory( khtmlsettingsplugin )
0022 add_subdirectory( kimgalleryplugin )
0023 add_subdirectory( dirfilter )
0024 add_subdirectory( uachanger )
0025 add_subdirectory( babelfish )
0026 add_subdirectory( webarchiver )
0027 add_subdirectory( kget )
0028 add_subdirectory( akregator )
0029 add_subdirectory( searchbar )
0030 
0031 if (QtTextToSpeech_FOUND)
0032    add_subdirectory(ttsplugin)
0033 endif()
0034 
0035 if(UNIX)
0036    add_subdirectory( shellcmdplugin )
0037 endif(UNIX)
0038 
0039 # TODO add_subdirectory( imagerotation )
0040 add_subdirectory( autorefresh )
0041 if(UNIX)
0042    add_subdirectory( fsview )
0043 endif()
0044