From ab4262d49e1147c7f5b1321fcc7dab39f3396824 Mon Sep 17 00:00:00 2001 From: Cubic Love <7754483+cubiclove@users.noreply.github.com> Date: Sat, 2 Sep 2023 14:44:00 +0100 Subject: [PATCH] About: Display Application's Icon in File Manager Before, when looking in /bin in File Manager, the About application's icon was missing. Now it is a serenity_app instead of serenity_bin the icon is visible! --- Userland/Applications/About/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/About/CMakeLists.txt b/Userland/Applications/About/CMakeLists.txt index 690f084a4e..13064a0443 100644 --- a/Userland/Applications/About/CMakeLists.txt +++ b/Userland/Applications/About/CMakeLists.txt @@ -14,5 +14,5 @@ execute_process(COMMAND "git diff-index --quiet HEAD -- && echo tracked || echo add_definitions(-DGIT_COMMIT="${GIT_COMMIT}" -DGIT_BRANCH="${GIT_BRANCH}" -DGIT_CHANGES="${GIT_CHANGES}") -serenity_bin(About) +serenity_app(About ICON ladyball) target_link_libraries(About PRIVATE LibCore LibGfx LibGUI LibMain)