diff options
author | Brett Stottlemyer <[email protected]> | 2018-06-14 20:02:28 -0400 |
---|---|---|
committer | Brett Stottlemyer <[email protected]> | 2018-06-16 11:10:25 +0000 |
commit | 670556134d119756cfc0d48a520b9bcbb2d155af (patch) | |
tree | a9589212012296c03653c24bf37771d59cd042a0 | |
parent | 372cbff7909ecb0e9937373ce4266f77018ce075 (diff) |
The pattern used for version matching breaks with two digit minor releases.
Change-Id: I08b70fcccbff5ee7d47bc2752b01552447bd8468
Reviewed-by: Michael Brasser <[email protected]>
-rw-r--r-- | customcontext/customcontext.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/customcontext/customcontext.pro b/customcontext/customcontext.pro index 2cda8e5..7b88fe1 100644 --- a/customcontext/customcontext.pro +++ b/customcontext/customcontext.pro @@ -3,7 +3,7 @@ TARGET=customcontext CONFIG += plugin -contains(QT_VERSION, ^5\\.[2-9]\\..*) { +equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 1) { message("Using Qt 5.2 or later") CONFIG += customcontext_qt520 } |