diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-08-12 14:31:31 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-08-15 06:17:58 -0700 |
commit | d57498a4fde13a04d56e7fc26199df2b10cbdf60 (patch) | |
tree | 4090a7f7349f916d19b10aa9c35bd1e2fe7fc7b0 /mesonbuild/compilers | |
parent | 67c8f532c65a2c3439e7965a7c8206c2e16545d5 (diff) | |
download | meson-d57498a4fde13a04d56e7fc26199df2b10cbdf60.zip meson-d57498a4fde13a04d56e7fc26199df2b10cbdf60.tar.gz meson-d57498a4fde13a04d56e7fc26199df2b10cbdf60.tar.bz2 |
Unconditionally use get_gui_app_args()
Add get_gui_app_args() to the Compiler class so it can be unconditionally
used
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 381b995..97cca47 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1076,6 +1076,9 @@ class Compiler: def gnu_symbol_visibility_args(self, vistype): return [] + def get_gui_app_args(self, value): + return [] + GCC_STANDARD = 0 GCC_OSX = 1 GCC_MINGW = 2 |