1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-05 18:17:36 +00:00
serenity/Userland/Demos/Mandelbrot/CMakeLists.txt
Gunnar Beutner 51db8085f8 Demos: Add Mandelbrot demo
This adds a very rudimentary Mandelbrot viewer. It supports zooming
and pretty much nothing else. Not even color smoothing or super
sampling.
2021-05-17 13:35:39 +02:00

6 lines
135 B
CMake

set(SOURCES
Mandelbrot.cpp
)
serenity_app(Mandelbrot ICON app-mandelbrot)
target_link_libraries(Mandelbrot LibGUI LibCore LibGfx)