blob: 8add0c3d248dc8878d6f181841adf4f80ad534d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
serenity_component(
Presenter
RECOMMENDED
TARGETS Presenter
DEPENDS FileSystemAccessServer
)
set(SOURCES
main.cpp
Presentation.cpp
PresenterWidget.cpp
Slide.cpp
SlideObject.cpp
)
serenity_app(Presenter ICON app-presenter)
target_link_libraries(Presenter PRIVATE LibWebView LibGUI LibGfx LibFileSystemAccessClient LibCore LibMain)
|