summaryrefslogtreecommitdiff
path: root/Applications/Piano
diff options
context:
space:
mode:
authorWilliam Marlow <william.marlow@lux01.co.uk>2020-12-20 18:26:09 +0000
committerAndreas Kling <kling@serenityos.org>2020-12-21 00:12:59 +0100
commit39364bdda43d307af8836743227d278d4bb7525e (patch)
treef596e3cf2879b9b7d000cedeea3da17aab73a73a /Applications/Piano
parentd16eabed0679c014dd32827737dc9abbe4b219d0 (diff)
downloadserenity-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.txt2
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)