diff options
author | Marc <Marc.Herbert+github@gmail.com> | 2019-11-26 16:23:46 -0800 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-11-27 02:23:46 +0200 |
commit | e8ae7785a693b77ef5e4c11b37eb54d9afb09ab8 (patch) | |
tree | 29454633e2c4883778bd23d8c08dc45c13df4549 | |
parent | 80dd3e30ce7c33912bb91a621881f96d44ca49ef (diff) | |
download | meson-e8ae7785a693b77ef5e4c11b37eb54d9afb09ab8.zip meson-e8ae7785a693b77ef5e4c11b37eb54d9afb09ab8.tar.gz meson-e8ae7785a693b77ef5e4c11b37eb54d9afb09ab8.tar.bz2 |
tests: add clues to find missing private/qtobject_p.h [skip ci]
Finding all the dependencies missing from my Fedora system to run the whole
test suite was relatively quick - except for this one.
-rw-r--r-- | test cases/frameworks/4 qt/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/frameworks/4 qt/main.cpp b/test cases/frameworks/4 qt/main.cpp index 1efd165..de00b15 100644 --- a/test cases/frameworks/4 qt/main.cpp +++ b/test cases/frameworks/4 qt/main.cpp @@ -3,6 +3,10 @@ #if QT_VERSION > 0x050000 // include some random private headers +// As you're not supposed to use it, your system may miss +// qobject_p.h. To locate it try one of these commands: +// - dnf provides */private/qobject_p.h +// - apt-file search qobject_p.h #include <private/qobject_p.h> #endif |