Warning, /pim/akregator/export/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-License-Identifier: CC0-1.0
0002 # SPDX-FileCopyrightText: none
0003 include_directories(
0004     ${CMAKE_CURRENT_SOURCE_DIR}
0005     ${CMAKE_CURRENT_BINARY_DIR}
0006     )
0007 
0008 add_executable(akregatorstorageexporter)
0009 target_sources(akregatorstorageexporter PRIVATE akregatorstorageexporter.cpp)
0010 target_link_libraries(akregatorstorageexporter
0011     KF6::Syndication
0012     akregatorprivate
0013     KF6::I18n
0014     KF6::CoreAddons
0015     )
0016 
0017 install(TARGETS akregatorstorageexporter ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
0018