ladybird/Userland/Applications/Presenter/CMakeLists.txt
kleines Filmröllchen de44d6c0a6 Applications: Add Presenter
This version can already:
- load all of the defined file format except for the image type and the
  frame-specific stuff
- navigate frames and slides (though frames are mostly stubbed out)
- display text with various common settings
- displays text with various fitting and scaling methods
- scale and position objects correctly no matter the window size
2022-11-25 14:28:33 -07:00

18 lines
399 B
CMake

serenity_component(
Presenter
RECOMMENDED
TARGETS Presenter
DEPENDS ImageDecoder FileSystemAccessServer
)
set(SOURCES
main.cpp
Presentation.cpp
PresenterWidget.cpp
Slide.cpp
SlideObject.cpp
)
serenity_app(Presenter ICON app-display-settings)
target_link_libraries(Presenter PRIVATE LibImageDecoderClient LibGUI LibGfx LibFileSystemAccessClient LibCore LibMain)