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/backend | |
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/backend')
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index ba5c68c..9b71894 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -2234,9 +2234,8 @@ rule FORTRAN_DEP_HACK%s if isinstance(target, build.Executable): # Currently only used with the Swift compiler to add '-emit-executable' commands += linker.get_std_exe_link_args() - # If gui_app is significant on this platform - if hasattr(linker, 'get_gui_app_args'): - commands += linker.get_gui_app_args(target.gui_app) + # If gui_app is significant on this platform, add the appropriate linker arguments + commands += linker.get_gui_app_args(target.gui_app) # If export_dynamic, add the appropriate linker arguments if target.export_dynamic: commands += linker.gen_export_dynamic_link_args(self.environment) |