diff options
author | Oswald Buddenhagen <[email protected]> | 2012-12-14 21:13:33 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2012-12-17 14:08:17 +0100 |
commit | 2ac3f92296d16432f2ed3af916271d6848547f36 (patch) | |
tree | 33b59b0c32aa6982daba2e6668c8696faddbbc78 /examples/widgets/tools/regexp | |
parent | 6c88c7db638618402db06fb0e57c60a3ed8e1064 (diff) |
clean up example project files, mostly wrt QT+=widgets
move QT+=widgets (and printsupport) statements before the install
statements, and de-duplicate some cases.
also move some TARGET assignments to a more conventional place.
Change-Id: I6140d8611680f66c24490e5894e4eb90cae95635
Reviewed-by: Joerg Bornemann <[email protected]>
Diffstat (limited to 'examples/widgets/tools/regexp')
-rw-r--r-- | examples/widgets/tools/regexp/regexp.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/widgets/tools/regexp/regexp.pro b/examples/widgets/tools/regexp/regexp.pro index eead58807ff..0d2a9a280cd 100644 --- a/examples/widgets/tools/regexp/regexp.pro +++ b/examples/widgets/tools/regexp/regexp.pro @@ -1,3 +1,5 @@ +QT += widgets + HEADERS = regexpdialog.h SOURCES = regexpdialog.cpp \ main.cpp @@ -6,6 +8,4 @@ SOURCES = regexpdialog.cpp \ target.path = $$[QT_INSTALL_EXAMPLES]/tools/regexp INSTALLS += target -QT += widgets - simulator: warning(This example might not fully work on Simulator platform) |