testlib: Don't link to IOKit on iOS, it's not part of the SDK

IOKit used to be part of the 5.x and 6.x iOS SDKs, but not officially,
so when Apple in the iOS 7 SDK removed IOKit headers and the library
symlink, our builds started failing.

Change-Id: I631cab7c106559968c06977fa25157a57402594c
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
This commit is contained in:
Tor Arne Vestbø 2013-10-01 17:26:21 +02:00 committed by The Qt Project
parent 08f685e865
commit d2649c50e0

View File

@ -69,10 +69,8 @@ wince*::LIBS += libcmt.lib \
winsock.lib winsock.lib
mac { mac {
LIBS += -framework IOKit -framework Security LIBS += -framework Security
!ios { osx: LIBS += -framework ApplicationServices -framework IOKit
LIBS += -framework ApplicationServices
}
} }
load(qt_module) load(qt_module)