X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=CMakeLists.txt;h=d2a89fd5bd7162ff185ff5f38ce9c50e0caeda7e;hp=36346398bd7cd8142ee46d60ab5ced1120a5ac6f;hb=f0a6776fc5102ff6a7fe1469917fe231e4cd3a8a;hpb=26c07f2ab71ab640cba10bd3ecec0f05dd5a0d64 diff --git a/CMakeLists.txt b/CMakeLists.txt index 36346398..d2a89fd5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,10 @@ IF(NOT BUILD_MONO AND NOT BUILD_CORE AND NOT BUILD_GUI) MESSAGE(FATAL_ERROR "\nYou have not selected which parts of Quassel I should build. Aborting.\nRun 'cmake -DBUILD=', where contains one or more of 'core', 'gui' or 'monolithic', or 'all' to build everything.\n") ENDIF(NOT BUILD_MONO AND NOT BUILD_CORE AND NOT BUILD_GUI) +IF(BUILD_CORE OR BUILD_GUI) + MESSAGE(FATAL_ERROR "\nBuilding of standalone core or GUI not supported at this time. Please check back later.\n") +ENDIF(BUILD_CORE OR BUILD_GUI) + SET(CMAKE_BUILD_TYPE Debug) # Define files @@ -42,7 +46,7 @@ INCLUDE_DIRECTORIES(${SDIRS} plugins) INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}) # We need Qt4 support. -SET(QT_MIN_VERSION "4.3.0") +SET(QT_MIN_VERSION "4.3.0") # 4.3 is required for SSL, crypto and some other stuff FIND_PACKAGE(Qt4 REQUIRED) # Set needed libraries