diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-11-06 00:13:18 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-11-06 00:13:18 +0100 |
commit | ee084bbeadfcd8667590b5b22f6693fe8bd75e2f (patch) | |
tree | d84b2de657421874dc7d0e0f87197db62cc0006f /meson.build | |
parent | ee137eedf5dd59a96126f02675ffe9553812a044 (diff) |
Set window icon
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/meson.build b/meson.build index f3bb533..5277b5c 100644 --- a/meson.build +++ b/meson.build @@ -18,15 +18,23 @@ dep = [ dependency('ayatana-appindicator3-0.1'), ] -add_project_arguments('-DGSR_VERSION="' + meson.project_version() + '"', language: ['c', 'cpp']) - -executable('gpu-screen-recorder-gtk', src, dependencies : dep, install : true) - prefix = get_option('prefix') datadir = get_option('datadir') +icons_path = join_paths(prefix, datadir, 'icons') + +executable('gpu-screen-recorder-gtk', + src, + dependencies : dep, + install : true, + cpp_args : [ + '-DGSR_ICONS_PATH="' + icons_path + '"', + '-DGSR_VERSION="' + meson.project_version() + '"' + ] +) + install_data(files('com.dec05eba.gpu_screen_recorder.desktop'), install_dir : join_paths(prefix, datadir, 'applications')) install_data(files('com.dec05eba.gpu_screen_recorder.appdata.xml'), install_dir : join_paths(prefix, datadir, 'metainfo')) -install_subdir('icons/hicolor', install_dir : join_paths(prefix, datadir, 'icons')) +install_subdir('icons/hicolor', install_dir : icons_path) gnome = import('gnome') gnome.post_install(gtk_update_icon_cache : true, update_desktop_database : true) |