diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-11-17 01:41:12 -0500 |
|---|---|---|
| committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-11-17 19:10:51 -0500 |
| commit | 174e05d0f6ced6f5e74d70fb19485d2417340b54 (patch) | |
| tree | fa60877e858d2afbc9147ee2985e1541a7c53716 | |
| parent | 193092e26b14fe875e9448354166fa3fdb905214 (diff) | |
| download | meson-174e05d0f6ced6f5e74d70fb19485d2417340b54.tar.gz | |
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.build | 2 |
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 ef40c9914..735b3f9c4 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', |
