diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-26 08:02:22 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-26 08:02:22 (GMT) |
commit | 7484a16ffeaf2c7640fc35b424a66cdd8695841c (patch) | |
tree | 2f10ab00d1cb3d3cf4c2b5258e95cd1dc6333b4c /examples | |
parent | 85c5f8e39975a310839f374653fefdbb4e2004f1 (diff) | |
download | Qt-7484a16ffeaf2c7640fc35b424a66cdd8695841c.zip Qt-7484a16ffeaf2c7640fc35b424a66cdd8695841c.tar.gz Qt-7484a16ffeaf2c7640fc35b424a66cdd8695841c.tar.bz2 |
Don't build the pannablewebview example if webkit is disabled
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gestures/gestures.pro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/gestures/gestures.pro b/examples/gestures/gestures.pro index 3faee7a..40809bb 100644 --- a/examples/gestures/gestures.pro +++ b/examples/gestures/gestures.pro @@ -6,7 +6,10 @@ SUBDIRS = \ collidingmice \ pannablewebview -contains(QT_CONFIG, webkit):contains(QT_CONFIG, svg):SUBDIRS += browser +contains(QT_CONFIG, webkit) { + SUBDIRS += pannablewebview + contains(QT_CONFIG, svg):SUBDIRS += browser +} # install target.path = $$[QT_INSTALL_EXAMPLES]/gestures |