diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-23 05:50:18 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-23 05:50:18 (GMT) |
commit | 6fc3873707ae9e8c002b14800bac9fd64faca42b (patch) | |
tree | a012940ce31c00ce9032aac9d714d334fad600ee /examples | |
parent | fb8adb2b1d23ed1bd9f8c1e9ebb00ad9bd0023d7 (diff) | |
download | Qt-6fc3873707ae9e8c002b14800bac9fd64faca42b.zip Qt-6fc3873707ae9e8c002b14800bac9fd64faca42b.tar.gz Qt-6fc3873707ae9e8c002b14800bac9fd64faca42b.tar.bz2 |
Don't build the gesture browser "example" if webkit or svg are disabled
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gestures/gestures.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/gestures/gestures.pro b/examples/gestures/gestures.pro index 050be19..3faee7a 100644 --- a/examples/gestures/gestures.pro +++ b/examples/gestures/gestures.pro @@ -1,12 +1,13 @@ TEMPLATE = \ subdirs SUBDIRS = \ - browser \ imageviewer \ graphicsview \ collidingmice \ pannablewebview +contains(QT_CONFIG, webkit):contains(QT_CONFIG, svg):SUBDIRS += browser + # install target.path = $$[QT_INSTALL_EXAMPLES]/gestures sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS gestures.pro README |