comparison build/network.txt @ 62:076691124a8b

CMake: fix build if Qt have not the ssl support.
author SokoL_SD
date Tue, 19 May 2009 16:24:14 +0000
parents a5cba313c924
children d4991ce91532
comparison
equal deleted inserted replaced
61:a2871e6b8b15 62:076691124a8b
1 set(required Core) 1 set(required Core)
2 set(classes 2 set(classes
3 QAbstractSocket 3 QAbstractSocket
4 QAuthenticator 4 QAuthenticator
5 QFtp 5 QFtp
6 QHostAddress 6 QHostAddress
7 QHostInfo 7 QHostInfo
8 QHttpHeader 8 QHttpHeader
9 QHttpRequestHeader 9 QHttpRequestHeader
10 QHttpResponseHeader 10 QHttpResponseHeader
11 QHttp 11 QHttp
12 QIPv6Address 12 QIPv6Address
13 QLocalServer 13 QLocalServer
14 QLocalSocket 14 QLocalSocket
15 QNetworkAccessManager 15 QNetworkAccessManager
16 QNetworkAddressEntry 16 QNetworkAddressEntry
17 QNetworkCookieJar 17 QNetworkCookieJar
18 QNetworkCookie 18 QNetworkCookie
19 QNetworkInterface 19 QNetworkInterface
20 QNetworkProxy 20 QNetworkProxy
21 QNetworkReply 21 QNetworkReply
22 QNetworkRequest 22 QNetworkRequest
23 QSslCertificate 23 QTcpServer
24 QSslCipher 24 QTcpSocket
25 QSslConfiguration 25 QUdpSocket
26 QSslError 26 QUrlInfo
27 QSslKey
28 QSslSocket
29 QTcpServer
30 QTcpSocket
31 QUdpSocket
32 QUrlInfo
33 ) 27 )
28
29 if(QT_QCONFIG MATCHES "openssl")
30 set(classes
31 QSslCertificate
32 QSslCipher
33 QSslConfiguration
34 QSslError
35 QSslKey
36 QSslSocket
37 )
38 endif(QT_QCONFIG MATCHES "openssl")