X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=CMakeLists.txt;h=f5e363234f4257a60f32ef2135ba293108524d26;hp=a983dc42e046d115db46c6934972a8045889ac7f;hb=53906db288d5b6e2693651bc09300733cf282461;hpb=0918ccf6e492ebd18d38319ce4fee0c59028d136 diff --git a/CMakeLists.txt b/CMakeLists.txt index a983dc42..f5e36323 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,6 @@ endif(STATIC OR WIN32) option(EMBED_DATA "Embed all data files in the binary (rather than installing them separately)" ${EMBED_DEFAULT}) set(QT "" CACHE STRING "Path to a Qt installation to use instead of the system Qt (e.g. for static builds)") -set(LINGUAS "" CACHE STRING "Comma-separated list of locales specifying languages that should be compiled") # Some settings imply others if(STATIC) @@ -114,7 +113,7 @@ if(CMAKE_COMPILER_IS_GNUCXX) endif(CMAKE_COMPILER_IS_GNUCXX) if(WANT_MONO OR WANT_QTCLIENT) - set(QT_MIN_VERSION "4.4.1") # Client crashes often with 4.4.0 + set(QT_MIN_VERSION "4.5.0") else(WANT_MONO OR WANT_QTCLIENT) set(QT_MIN_VERSION "4.4.0") endif(WANT_MONO OR WANT_QTCLIENT) @@ -206,7 +205,7 @@ if(WITH_KDE) add_definitions(-DHAVE_KDE ${KDE4_DEFINITIONS}) set(HAVE_KDE 1) set(MOC_DEFINES ${MOC_DEFINES} -DHAVE_KDE) - set(QUASSEL_KDE_LIBRARIES ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBRARY} knotifyconfig) + set(QUASSEL_KDE_LIBRARIES ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBRARY} ${KDE4_SOLID_LIBS} knotifyconfig) # We always use external icons for KDE4 support, since we use its iconloader rather than our own set(EMBED_DATA OFF) else(KDE4_FOUND) @@ -323,5 +322,5 @@ set(CLIENT_DEPS ) add_subdirectory(data) add_subdirectory(icons) add_subdirectory(pics) -add_subdirectory(i18n) +add_subdirectory(po) add_subdirectory(src)