From 292cd009eae0dfa32a54456a392622a1374e150a Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 12 May 2021 23:12:29 +0100 Subject: [PATCH] KeyboardMapper: Embed icon in executable By using serenity_app() instead of serenity_bin() in the CMakeLists.txt, we can embed an icon as usual. --- Userland/Applications/KeyboardMapper/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/KeyboardMapper/CMakeLists.txt b/Userland/Applications/KeyboardMapper/CMakeLists.txt index fe24376eb1..af814c44b2 100644 --- a/Userland/Applications/KeyboardMapper/CMakeLists.txt +++ b/Userland/Applications/KeyboardMapper/CMakeLists.txt @@ -4,5 +4,5 @@ set(SOURCES main.cpp ) -serenity_bin(KeyboardMapper) +serenity_app(KeyboardMapper ICON app-keyboard-mapper) target_link_libraries(KeyboardMapper LibGUI LibKeyboard)