aboutsummaryrefslogtreecommitdiff
path: root/backends.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-04-01 20:07:41 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-04-01 20:07:41 +0300
commit35f3495c1deba8edcb75136c1948a41eaffb1e92 (patch)
tree520750dc10bc7b246dc50ff534ad0b1a59b632f9 /backends.py
parente3184c4f94cf000e5be2eb7f41ccf023770c65c9 (diff)
downloadmeson-35f3495c1deba8edcb75136c1948a41eaffb1e92.zip
meson-35f3495c1deba8edcb75136c1948a41eaffb1e92.tar.gz
meson-35f3495c1deba8edcb75136c1948a41eaffb1e92.tar.bz2
Can build Qt5 applications.
Diffstat (limited to 'backends.py')
-rwxr-xr-xbackends.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends.py b/backends.py
index 8860661..c92201a 100755
--- a/backends.py
+++ b/backends.py
@@ -183,6 +183,9 @@ class Backend():
commands += compiler.get_pic_flags()
for dep in target.get_external_deps():
commands += dep.get_compile_flags()
+ if isinstance(target, interpreter.Executable):
+ commands += dep.get_exe_flags()
+
return commands
def build_target_link_arguments(self, deps):