diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2018-12-12 22:47:27 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2018-12-12 22:47:27 +0100 |
| commit | 4c37e28978eda34ff625c0f830d603107a50bc3d (patch) | |
| tree | 276583689859d0675793542a91275dca69ad4184 | |
| parent | 8a1e1a8c952f681d0d20ba9ae16f117940e16965 (diff) | |
Make both GUI executables install: true
| -rw-r--r-- | meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 64deeb6..f544db3 100644 --- a/meson.build +++ b/meson.build @@ -186,7 +186,8 @@ if have_gtk lib_proxy, lib_mitm, lib_monitor, lib_hexdump, lib_common, lib_resolver, lib_logger], dependencies: [dep_gtk, dep_thread], - cpp_args: '-Wno-unused-function') + cpp_args: '-Wno-unused-function', + install: true) install_data(['data/tp-monitor-gtk.desktop'], install_dir: join_paths(get_option('datadir'), 'applications')) install_data(['data/tp-monitor-gtk.gschema.xml'], @@ -206,7 +207,8 @@ if dep_qt.found() link_with: [lib_monitor_gui, lib_protocol, lib_attrstr, lib_proxy, lib_mitm, lib_monitor, lib_hexdump, lib_common, lib_resolver, lib_logger], - dependencies: [dep_qt, dep_thread]) + dependencies: [dep_qt, dep_thread], + install: true) install_data(['data/tp-monitor-qt.desktop'], install_dir: join_paths(get_option('datadir'), 'applications')) endif |
