mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-10 05:02:54 +00:00
This adds component declarations so that users can select to not build certain parts of the OS.
14 lines
283 B
CMake
14 lines
283 B
CMake
serenity_component(
|
|
ImageViewer
|
|
RECOMMENDED
|
|
TARGETS ImageViewer
|
|
DEPENDS ImageDecoder
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
ViewWidget.cpp
|
|
)
|
|
|
|
serenity_app(ImageViewer ICON filetype-image)
|
|
target_link_libraries(ImageViewer LibDesktop LibGUI LibGfx LibImageDecoderClient)
|