diff options
author | Martin Jones <[email protected]> | 2012-06-01 14:53:26 +1000 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2012-06-05 04:35:50 +0200 |
commit | 805c30e809a86cc1feabeb3bdbee943a7bbf8796 (patch) | |
tree | 102ce2b32ceacb9b6522d579d8250892e1fdf276 /examples/qml/cppextensions | |
parent | c734706c69ed5b38cc97aea5be3f0553c194aa0a (diff) |
Allow qtdeclarative to compile with -no-widgets
We have no hard requirement for QtWidgets library, so we should
build without it.
Change-Id: I85c85cc1a52bf9daa7ab7916f19bf7cc3ad5845f
Reviewed-by: Damian Jansen <[email protected]>
Diffstat (limited to 'examples/qml/cppextensions')
-rw-r--r-- | examples/qml/cppextensions/referenceexamples/referenceexamples.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/qml/cppextensions/referenceexamples/referenceexamples.pro b/examples/qml/cppextensions/referenceexamples/referenceexamples.pro index 505cefd331..4bfbd488ea 100644 --- a/examples/qml/cppextensions/referenceexamples/referenceexamples.pro +++ b/examples/qml/cppextensions/referenceexamples/referenceexamples.pro @@ -6,9 +6,10 @@ SUBDIRS += \ binding \ coercion \ default \ - extended \ grouped \ properties \ signal \ valuesource \ methods + +!contains(QT_CONFIG, no-widgets): SUBDIRS += extended |