mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
208e3f1978
This commit also starts the adoption of ErrorOr<T> and the String class in ImageViewer. However, there is still a few more changes that could be made. Since the actions of using LibFSAC and using String in more places are tightly coupled, I decided to put them in one commit.
16 lines
366 B
CMake
16 lines
366 B
CMake
serenity_component(
|
|
ImageViewer
|
|
RECOMMENDED
|
|
TARGETS ImageViewer
|
|
DEPENDS ImageDecoder
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
MainWidget.cpp
|
|
ViewWidget.cpp
|
|
)
|
|
|
|
serenity_app(ImageViewer ICON filetype-image)
|
|
target_link_libraries(ImageViewer PRIVATE LibCore LibDesktop LibFileSystemAccessClient LibGUI LibGfx LibConfig LibImageDecoderClient LibMain)
|