kasts/src/CMakeLists.txt

15 lines
351 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
)
2020-02-29 00:14:25 +01:00
add_executable(alligator ${alligator_SRCS})
target_link_libraries(alligator Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg Qt5::Sql KF5::Syndication)
2020-02-28 23:25:08 +01:00
install(TARGETS alligator ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})