kasts/src/CMakeLists.txt

15 lines
410 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
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})