diff options
author | William Marlow <william.marlow@lux01.co.uk> | 2020-12-20 18:26:09 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-21 00:12:59 +0100 |
commit | 39364bdda43d307af8836743227d278d4bb7525e (patch) | |
tree | f596e3cf2879b9b7d000cedeea3da17aab73a73a /Applications/Piano | |
parent | d16eabed0679c014dd32827737dc9abbe4b219d0 (diff) | |
download | serenity-39364bdda43d307af8836743227d278d4bb7525e.zip |
Build: Embed application icons directly in the executables.
New serenity_app() targets can be defined which allows application
icons to be emedded directly into the executable. The embedded
icons will then be used when creating an icon for that file in
LibGUI.
Diffstat (limited to 'Applications/Piano')
-rw-r--r-- | Applications/Piano/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Piano/CMakeLists.txt b/Applications/Piano/CMakeLists.txt index 6756afb18c..382e023c3b 100644 --- a/Applications/Piano/CMakeLists.txt +++ b/Applications/Piano/CMakeLists.txt @@ -10,5 +10,5 @@ set(SOURCES WaveWidget.cpp ) -serenity_bin(Piano) +serenity_app(Piano ICON app-piano) target_link_libraries(Piano LibAudio LibGUI) |