lumina/src/CMakeLists.txt
Chris Cochrun 014a38a4f9 the addition of a thumbnailer that works for videos
the previewSlideDelegate now uses the thumbnails instead
2023-02-08 14:16:26 -06:00

30 lines
877 B
CMake

add_executable(presenter main.cpp resources.qrc)
target_sources(presenter
PRIVATE
main.cpp resources.qrc
cpp/songsqlmodel.cpp cpp/songsqlmodel.h
cpp/serviceitemmodel.cpp cpp/serviceitemmodel.h
cpp/serviceitem.cpp cpp/serviceitem.h
cpp/slideobject.cpp cpp/slideobject.h
cpp/slidemodel.cpp cpp/slidemodel.h
cpp/slide.cpp cpp/slide.h
cpp/videosqlmodel.cpp cpp/videosqlmodel.h
cpp/imagesqlmodel.cpp cpp/imagesqlmodel.h
cpp/filemanager.cpp cpp/filemanager.h
cpp/presentationsqlmodel.cpp cpp/presentationsqlmodel.h
cpp/mpv/mpvobject.h cpp/mpv/mpvobject.cpp
cpp/mpv/qthelper.hpp cpp/mpv/mpvhelpers.h
cpp/framedecoder.h cpp/framedecoder.cpp
)
target_compile_options (presenter PUBLIC -fexceptions)
target_link_libraries(presenter PRIVATE
${AVUTIL_LIBRARIES}
${AVFILTER_LIBRARIES}
${AVFORMAT_LIBRARIES}
${AVCODEC_LIBRARIES}
${SWSCALE_LIBRARIES}
)