Enable KDE support in the build system
authorManuel Nickschas <sputnick@quassel-irc.org>
Mon, 22 Dec 2008 07:21:29 +0000 (08:21 +0100)
committerManuel Nickschas <sputnick@quassel-irc.org>
Fri, 26 Dec 2008 00:08:42 +0000 (01:08 +0100)
CMakeLists.txt
src/CMakeLists.txt
src/common/main.cpp

index 2a7d0fc..d643ac8 100644 (file)
@@ -6,6 +6,7 @@
 # -DWITH_DBUS=OFF     : Disable D-Bus support (dbus notifications)
 # -DWITH_WEBKIT=OFF   : Disable WebKit support (link previews)
 # -DWITH_PHONON=OFF   : Disable Phonon support (audio notifications)
+# -DWITH_KDE=ON       : Enable KDE4 support
 # -DOXYGEN_ICONS=(Builtin|External)  : If "Builtin" (the default), compile our Oxygen Icon Theme subset into the binary
 #                                    : If "External", we assume Oxygen is already installed on the system
 # -DQUASSEL_ICONS=(Builtin|External) : If "Builtin" (the default), put our own icons into the binary
@@ -37,6 +38,7 @@ option(WITH_OPENSSL  "Enable OpenSSL support if present on the system"        ON)
 option(WITH_DBUS     "Enable D-Bus support if present on the system"   ON)
 option(WITH_WEBKIT   "Enable WebKit support (for link previews)"       ON)
 option(WITH_PHONON   "Enable Phonon support (for audio notifications)" ON)
+option(WITH_KDE      "Enable KDE4 integration"                         OFF)
 
 option(STATIC        "Enable static building (might not be portable)" OFF)
 option(DEPLOY        "Mac OS X only! Adds required libs to bundle resources and create a dmg. Note: requires Qt to be built with 10.4u SDK" OFF)
@@ -167,6 +169,23 @@ else(WITH_PHONON)
   message(STATUS "Disabling Phonon support")
 endif(WITH_PHONON)
 
+# Setup KDE4 support
+if(WITH_KDE)
+  find_package(KDE4)
+  if(KDE4_FOUND)
+    message(STATUS "Enabling KDE4 integration")
+    include_directories(${KDE4_INCLUDES})
+    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})
+  else(KDE4_FOUND)
+    message(STATUS "KDE4 not found, disabling KDE integration")
+  endif(KDE4_FOUND)
+else(WITH_KDE)
+  message(STATUS "Disabling KDE4 integration")
+endif(WITH_KDE)
+
 # Set global buildflags
 # This is very much non-portable, so don't use -DSTATIC until you know what
 # you do.
index a599e9d..12103b8 100644 (file)
@@ -13,6 +13,11 @@ if(WANT_QTCLIENT OR WANT_MONO)
   include_directories(client)
   include_directories(uisupport)
   include_directories(qtui)
+#  if(HAVE_KDE)
+#    add_subdirectory(kdeui)
+#    include_directories(kdeui)
+#    set(LINK_KDE mod_kdeui)
+#  endif(HAVE_KDE)
 endif(WANT_QTCLIENT OR WANT_MONO)
 
 include_directories(${CMAKE_CURRENT_BINARY_DIR}) # for version.gen
@@ -49,8 +54,8 @@ if(WANT_QTCLIENT)
   set_target_properties(quasselclient PROPERTIES
                                       COMPILE_FLAGS "-DQT_GUI_LIB -DQT_NETWORK_LIB -DBUILD_QTUI"
                                       OUTPUT_NAME ../quasselclient)
-  target_link_libraries(quasselclient mod_qtui mod_uisupport mod_client mod_common
-                                      ${QUASSEL_QT_LIBRARIES} ${QUASSEL_SSL_LIBRARIES} ${PHONON_LIBS})
+  target_link_libraries(quasselclient ${LINK_KDE} mod_qtui mod_uisupport mod_client mod_common
+                                      ${QUASSEL_QT_LIBRARIES} ${QUASSEL_KDE_LIBRARIES} ${QUASSEL_SSL_LIBRARIES} ${PHONON_LIBS})
   install(TARGETS quasselclient RUNTIME DESTINATION ${BIN_INSTALL_DIR})
 endif(WANT_QTCLIENT)
 
@@ -63,7 +68,7 @@ if(WANT_MONO)
                                 COMPILE_FLAGS "-DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DBUILD_MONO"
                                 OUTPUT_NAME ../quassel)
   target_link_libraries(quassel mod_qtui mod_uisupport mod_client mod_core mod_common
-                                ${QUASSEL_QT_LIBRARIES} ${QUASSEL_SSL_LIBRARIES} ${PHONON_LIBS})
+                                ${QUASSEL_QT_LIBRARIES} ${QUASSEL_KDE_LIBRARIES} ${QUASSEL_SSL_LIBRARIES} ${PHONON_LIBS})
   install(TARGETS quassel RUNTIME DESTINATION ${BIN_INSTALL_DIR})
 endif(WANT_MONO)
 
index 9bfa885..3fa06b3 100644 (file)
@@ -21,7 +21,7 @@
 #include <cstdlib>
 
 #ifdef BUILD_CORE
-#  include "../core/coreapplication.h"
+#  include "coreapplication.h"
 #elif defined BUILD_QTUI
 #  include "qtuiapplication.h"
 #elif defined BUILD_MONO