summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-05-12 23:12:29 +0100
committerLinus Groh <mail@linusgroh.de>2021-05-12 23:12:29 +0100
commit292cd009eae0dfa32a54456a392622a1374e150a (patch)
treecdfdb2de7f74229a14c2a0468c5f187d80267d35 /Userland
parent847a49209e12aee82014d8373379b0542f7fc627 (diff)
downloadserenity-292cd009eae0dfa32a54456a392622a1374e150a.zip
KeyboardMapper: Embed icon in executable
By using serenity_app() instead of serenity_bin() in the CMakeLists.txt, we can embed an icon as usual.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Applications/KeyboardMapper/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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)