Add CMake option to disable building of internal HTTP server.

BUG: 373
This commit is contained in:
craig.p.drummond
2014-01-02 19:07:59 +00:00
committed by craig.p.drummond
parent eb51beb2bd
commit 7a2f2b6749
14 changed files with 65 additions and 15 deletions

View File

@@ -73,6 +73,7 @@ HttpServer * HttpServer::self()
#endif
}
#ifdef ENABLE_HTTP_SERVER
HttpServer::HttpServer()
: QObject(0)
, thread(0)
@@ -361,3 +362,5 @@ void HttpServer::removedIds(const QSet<qint32> &ids)
startCloseTimer();
}
}
#endif