From: Manuel Nickschas Date: Sun, 23 Mar 2014 20:28:28 +0000 (+0100) Subject: Fix SSL detection X-Git-Tag: 0.11.0~88 X-Git-Url: https://git.quassel-irc.org/?a=commitdiff_plain;ds=sidebyside;h=4f1bed17fa93d62d2d1d688ef5c68563a8bf5942;hp=4f1bed17fa93d62d2d1d688ef5c68563a8bf5942;p=quassel.git Fix SSL detection As there is no easy way to check for QT_CONFIG with Qt5 and CMake, and the way we did it for Qt4 is hackish at best, let's do it the proper way and compile a short code snippet that checks for the appropriate defines (QT_NO_OPENSSL for Qt4, and QT_NO_SSL for Qt5). This should be the most robust way of figuring this out, and is rather easy with CMake. ---