1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:17:36 +00:00

Mandelbrot: Modernize code by using the FileSystemAccessClient

This allows us to stop using raw `FILE*` and reintroduce `unveil` calls.
This commit is contained in:
Lucas CHOLLET 2023-12-28 17:03:22 -05:00 committed by Andreas Kling
parent 0c8c0ff412
commit 726fa41d4a
2 changed files with 22 additions and 30 deletions

View file

@ -8,4 +8,4 @@ set(SOURCES
)
serenity_app(Mandelbrot ICON app-mandelbrot)
target_link_libraries(Mandelbrot PRIVATE LibGUI LibCore LibGfx LibMain)
target_link_libraries(Mandelbrot PRIVATE LibCore LibFileSystemAccessClient LibGfx LibGUI LibMain)