mirror of https://github.com/KDE/kasts.git
15 lines
410 B
CMake
15 lines
410 B
CMake
|
set(alligator_SRCS
|
||
|
main.cpp
|
||
|
feedListModel.cpp
|
||
|
entryListModel.cpp
|
||
|
fetcher.cpp
|
||
|
feed.cpp
|
||
|
entry.cpp
|
||
|
resources.qrc
|
||
|
)
|
||
|
|
||
|
add_executable(alligator ${alligator_SRCS} ${RESOURCES})
|
||
|
target_link_libraries(alligator Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg Qt5::Sql KF5::KIOCore KF5::KIOFileWidgets KF5::KIONTLM KF5::Syndication)
|
||
|
|
||
|
install(TARGETS alligator ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
|