diff options
author | Luca Weiss <[email protected]> | 2020-07-29 20:10:24 +0200 |
---|---|---|
committer | Chris Adams <[email protected]> | 2021-04-09 15:40:49 +1000 |
commit | 713bb697fa24f6d6d4e2521ee3db2de237ea6f05 (patch) | |
tree | 1df59bfe3bdcf63b0e33402a4d540b6ca17dec54 | |
parent | 4b2bdce30bd0629c9dc0567af6eeaa1d038f3152 (diff) |
Without this the generated pkg-config files are invalid.
Qt6Contacts.pc gets generated but e.g. Qt6Versit.pc references
'Qt0Contacts' as dependency which can't be found.
As the libraries are also called libQt6* by the build system, let's set
MODULE_VERSION to 6.0.0.
Change-Id: I8f0bcb7cbdfef04e9c0a2416085832254342bc3d
Reviewed-by: Christopher Adams <[email protected]>
-rw-r--r-- | .qmake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.qmake.conf b/.qmake.conf index effd89836..2231c0183 100644 --- a/.qmake.conf +++ b/.qmake.conf @@ -2,4 +2,4 @@ load(qt_build_config) DEFINES += QT_NO_JAVA_STYLE_ITERATORS -MODULE_VERSION = 0.0.0 +MODULE_VERSION = 6.0.0 |