diff options
author | Rafael Roquetto <rafael.roquetto.qnx@kdab.com> | 2012-12-05 21:43:01 -0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-12-11 13:19:52 +0100 |
commit | f7e941785e811e305445d5544cffcfe889a3abc2 (patch) | |
tree | 0dfd3301d185697b3698427b552876bded0d2603 | |
parent | a2a08014bc2f09a7be48b2127f72e8e4a4c33515 (diff) | |
download | qt4-tools-f7e941785e811e305445d5544cffcfe889a3abc2.tar.gz |
configure.exe: fix -inotify option
cherry-picked from qt5 stable 675676aba1e71410fa6cfca430ab9bd64ebdcdaa
Change-Id: I94e8ce037de7df50511be2471db842cca726ccef
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-rw-r--r-- | tools/configure/configureapp.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 63ff44fa3d..80cf78bff5 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -3023,6 +3023,9 @@ void Configure::generateOutputVars() else if (dictionary["QT_ICONV"] == "gnu") qtConfig += "gnu-libiconv"; + if (dictionary["QT_INOTIFY"] == "yes") + qtConfig += "inotify"; + if (dictionary["NEON"] == "yes") qtConfig += "neon"; |