aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-11-17 01:41:12 -0500
committerEli Schwartz <eschwartz@archlinux.org>2022-11-17 19:10:51 -0500
commit174e05d0f6ced6f5e74d70fb19485d2417340b54 (patch)
treefa60877e858d2afbc9147ee2985e1541a7c53716
parent193092e26b14fe875e9448354166fa3fdb905214 (diff)
downloadmeson-174e05d0f6ced6f5e74d70fb19485d2417340b54.zip
meson-174e05d0f6ced6f5e74d70fb19485d2417340b54.tar.gz
meson-174e05d0f6ced6f5e74d70fb19485d2417340b54.tar.bz2
tests: fix qt project test when running with qt4
*.qrc files converted to C++ sources could make use of Qt headers, and in practice for qt4 they seem to. Since this is Qt code to begin with, it makes sense to depend on the Qt being targeted regardless of version.
-rw-r--r--test cases/frameworks/4 qt/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/frameworks/4 qt/meson.build b/test cases/frameworks/4 qt/meson.build
index ef40c99..735b3f9 100644
--- a/test cases/frameworks/4 qt/meson.build
+++ b/test cases/frameworks/4 qt/meson.build
@@ -83,7 +83,7 @@ foreach qt : ['qt4', 'qt5', 'qt6']
translations_cpp = qtmodule.compile_translations(qresource: qt+'_lang.qrc')
# unity builds suck and definitely cannot handle two qrc embeds in one compilation unit
- unityproof_translations = static_library(qt+'unityproof_translations', translations_cpp)
+ unityproof_translations = static_library(qt+'unityproof_translations', translations_cpp, dependencies: qtdep)
extra_cpp_args += '-DQT="@0@"'.format(qt)
qexe = executable(qt + 'app',