moving code around for a better file structure

This commit is contained in:
Chris Cochrun 2022-12-09 10:55:50 -06:00
parent 8f3e898385
commit 7eba697dc2
27 changed files with 20 additions and 24 deletions

View file

@ -3,17 +3,17 @@ add_executable(presenter main.cpp resources.qrc)
target_sources(presenter
PRIVATE
main.cpp resources.qrc
songsqlmodel.cpp songsqlmodel.h
serviceitemmodel.cpp serviceitemmodel.h
serviceitem.cpp serviceitem.h
slide.cpp slide.h
videosqlmodel.cpp videosqlmodel.h
imagesqlmodel.cpp imagesqlmodel.h
filemanager.cpp filemanager.h
presentationsqlmodel.cpp presentationsqlmodel.h
mpv/mpvobject.h mpv/mpvobject.cpp
mpv/qthelper.hpp mpv/mpvhelpers.h
cpp/main.cpp resources.qrc
cpp/songsqlmodel.cpp cpp/songsqlmodel.h
cpp/serviceitemmodel.cpp cpp/serviceitemmodel.h
cpp/serviceitem.cpp cpp/serviceitem.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
)
target_compile_options (presenter PUBLIC -fexceptions)