1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:27:43 +00:00

KeyboardMapper: Embed icon in executable

By using serenity_app() instead of serenity_bin() in the CMakeLists.txt,
we can embed an icon as usual.
This commit is contained in:
Linus Groh 2021-05-12 23:12:29 +01:00
parent 847a49209e
commit 292cd009ea

View file

@ -4,5 +4,5 @@ set(SOURCES
main.cpp
)
serenity_bin(KeyboardMapper)
serenity_app(KeyboardMapper ICON app-keyboard-mapper)
target_link_libraries(KeyboardMapper LibGUI LibKeyboard)