diff options
author | Jens Georg <mail@jensge.org> | 2018-11-11 08:45:50 +0100 |
---|---|---|
committer | Jens Georg <mail@jensge.org> | 2018-11-11 08:50:00 +0100 |
commit | 09c4e6316d79c1d3cb4455215edaa1ee32abb984 (patch) | |
tree | 8d30125a72d54b4213ded3fbddfa688c4cee996a /meson.build | |
parent | 4440c6a72d39fb1642d48febb50e01f2e581b759 (diff) | |
download | gupnp-tools-09c4e6316d79c1d3cb4455215edaa1ee32abb984.tar.gz |
build: Fix missing windows things
- Add icons for executables
- Compile the GUI apps as gui apps
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 696a315..b0319ad 100644 --- a/meson.build +++ b/meson.build @@ -3,6 +3,10 @@ project('gupnp-tools', ['c'], version: '0.8.15') gnome = import('gnome') i18n = import('i18n') +if host_machine.system() == 'windows' + win = import('windows') +endif + gssdp = dependency('gssdp-1.0', version: '>= 0.13.3') gupnp = dependency('gupnp-1.0', version: '>= 0.20.14') soup = dependency('libsoup-2.4', version: '>= 2.42') |