summaryrefslogtreecommitdiff
path: root/Applications/DisplaySettings
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/DisplaySettings
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/DisplaySettings')
-rw-r--r--Applications/DisplaySettings/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/DisplaySettings/CMakeLists.txt b/Applications/DisplaySettings/CMakeLists.txt
index b5d2162f9d..af736e83a8 100644
--- a/Applications/DisplaySettings/CMakeLists.txt
+++ b/Applications/DisplaySettings/CMakeLists.txt
@@ -4,5 +4,5 @@ set(SOURCES
MonitorWidget.cpp
)
-serenity_bin(DisplaySettings)
+serenity_app(DisplaySettings ICON app-display-settings)
target_link_libraries(DisplaySettings LibGUI)