ladybird/Userland/Applications/KeyboardMapper/CMakeLists.txt
Linus Groh 292cd009ea KeyboardMapper: Embed icon in executable
By using serenity_app() instead of serenity_bin() in the CMakeLists.txt,
we can embed an icon as usual.
2021-05-12 23:12:29 +01:00

9 lines
186 B
CMake

set(SOURCES
KeyboardMapperWidget.cpp
KeyButton.cpp
main.cpp
)
serenity_app(KeyboardMapper ICON app-keyboard-mapper)
target_link_libraries(KeyboardMapper LibGUI LibKeyboard)