diff options
author | Laurin-Luis Lehning <65224843+e820@users.noreply.github.com> | 2020-12-14 13:54:51 +0100 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-12-14 11:23:53 -0800 |
commit | 4053babf9cc240051df20576d1eed4f904eaa71e (patch) | |
tree | 7dc75f710d4da69bd3cc651dfa5831e91bf92868 /mesonbuild/compilers/compilers.py | |
parent | 76b577af117477803d32101a031028179244476a (diff) | |
download | meson-4053babf9cc240051df20576d1eed4f904eaa71e.zip meson-4053babf9cc240051df20576d1eed4f904eaa71e.tar.gz meson-4053babf9cc240051df20576d1eed4f904eaa71e.tar.bz2 |
Slight consistency changes to get_gui_app_args
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index b1452b2..e83514d 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -871,7 +871,8 @@ class Compiler(metaclass=abc.ABCMeta): return [] def get_gui_app_args(self, value: bool) -> T.List[str]: - return [] + # Only used on Windows + return self.linker.get_gui_app_args(value) def get_win_subsystem_args(self, env: 'Environment', value: str) -> T.List[str]: # By default the dynamic linker is going to return an empty |