Warning, /frameworks/baloo/src/tools/balooctl/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_definitions(-DTRANSLATION_DOMAIN=\"balooctl5\")
0002 
0003 add_executable(balooctl)
0004 target_sources(balooctl PRIVATE
0005     main.cpp
0006     indexer.cpp
0007     command.cpp
0008     configcommand.cpp
0009     statuscommand.cpp
0010     monitorcommand.cpp
0011     ${CMAKE_SOURCE_DIR}/src/file/extractor/result.cpp
0012 )
0013 
0014 ecm_mark_nongui_executable(balooctl)
0015 target_compile_definitions(balooctl PRIVATE -DPROJECT_VERSION="${PROJECT_VERSION}")
0016 
0017 target_link_libraries(balooctl
0018     Qt${QT_MAJOR_VERSION}::DBus
0019     KF5::CoreAddons
0020     KF5::ConfigCore
0021     KF5::I18n
0022     KF5::Baloo
0023     KF5::BalooEngine
0024     baloofilecommon
0025     BalooDBusMainInterface
0026     BalooDBusSchedulerInterface
0027     BalooDBusFileIndexerInterface
0028 )
0029 
0030 install(TARGETS balooctl DESTINATION ${KDE_INSTALL_BINDIR})