kasts/src/CMakeLists.txt

18 lines
476 B
CMake
Raw Normal View History

2020-02-28 23:25:08 +01:00
set(alligator_SRCS
main.cpp
feedListModel.cpp
entryListModel.cpp
fetcher.cpp
feed.cpp
entry.cpp
2020-03-16 22:37:04 +01:00
database.cpp
2020-02-28 23:25:08 +01:00
resources.qrc
)
2020-03-26 14:16:19 +01:00
kconfig_add_kcfg_files(alligator_SRCS alligatorsettings.kcfgc GENERATE_MOC)
2020-02-29 00:14:25 +01:00
add_executable(alligator ${alligator_SRCS})
2020-03-26 14:16:19 +01:00
target_link_libraries(alligator Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg Qt5::Sql KF5::Syndication KF5::CoreAddons KF5::ConfigGui)
2020-02-28 23:25:08 +01:00
install(TARGETS alligator ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})