Warning, /plasma/lancelot/src/blade/runners/plugins/recoll/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 # vim:set softtabstop=3 shiftwidth=3 tabstop=3 expandtab:
0002
0003 project (blade_plugin_recoll)
0004
0005 include_directories (
0006 ${CMAKE_CURRENT_SOURCE_DIR}
0007 ${CMAKE_CURRENT_SOURCE_DIR}/../..
0008 ${CMAKE_CURRENT_BINARY_DIR}
0009 )
0010
0011 include_directories (
0012 ${RECOLL_SOURCE_DIR}/src/rcldb/
0013 ${RECOLL_SOURCE_DIR}/src/common/
0014 ${RECOLL_SOURCE_DIR}/src/utils/
0015 ${RECOLL_SOURCE_DIR}/src/query/
0016 )
0017
0018 set (
0019 blade_recoll_SRCS
0020 RecollRunner.cpp
0021 )
0022
0023 kcoreaddons_add_plugin (
0024 blade_plugin_recoll
0025 SOURCES ${blade_recoll_SRCS}
0026 INSTALL_NAMESPACE ${BLADE_PLUGIN_DIR}
0027 )
0028
0029 target_link_libraries (
0030 blade_plugin_recoll
0031 Qt5::Core
0032 KF5::CoreAddons
0033 KF5::I18n
0034 ${RECOLL_LIB_DIR}/librecoll-1.23.0.so
0035 blade_plugin
0036 )
0037
0038 set_target_properties (
0039 blade_plugin_recoll
0040 PROPERTIES PREFIX ""
0041 )
0042