From ee084bbeadfcd8667590b5b22f6693fe8bd75e2f Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 6 Nov 2024 00:13:18 +0100 Subject: Set window icon --- meson.build | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'meson.build') 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) -- cgit v1.2.3