diff options
author | Kent Hansen <kent.hansen@nokia.com> | 2012-06-05 10:04:29 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-06-06 21:30:37 +0200 |
commit | 5a6aaede7f0e5ea714fa592ede4b909e3d2ded69 (patch) | |
tree | 6310f8dd0942e7ffa652b54819419b0e61246516 /src/src.pro | |
parent | 3553c3b5517b0e9d5c8b78aa9ca8de33486b9894 (diff) | |
download | qtscript-5a6aaede7f0e5ea714fa592ede4b909e3d2ded69.tar.gz |
Don't build scripttools when Qt is configured with -no-widgets
Change-Id: I9fabf055a959b27cd44fb2e179f98bfae9d7d297
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/src.pro')
-rw-r--r-- | src/src.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/src.pro b/src/src.pro index 5fa1aa9..926c09e 100644 --- a/src/src.pro +++ b/src/src.pro @@ -1,3 +1,4 @@ TEMPLATE = subdirs CONFIG += ordered -SUBDIRS += script scripttools +SUBDIRS += script +!contains(QT_CONFIG, no-widgets): SUBDIRS += scripttools |