First bunch of fixes suggested by the usability team. More will follow...
[kdenetwork.git] / CMakeLists.txt
blobba0e744d49b67b7d604c10dd160c3c3b991ab233
1 project(kdenetwork)
3 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
5 # search packages used by KDE
6 find_package(KDE4 REQUIRED)
7 include (KDE4Defaults)
8 include (MacroLibrary)
10 include(CheckIncludeFile)
11 include(CheckIncludeFiles)
12 include(CheckSymbolExists)
13 include(CheckFunctionExists)
14 include(CheckLibraryExists)
15 include(CheckPrototypeExists)
16 include(CheckTypeSize)
17 include(MacroBoolTo01)
18 include(MacroOptionalAddSubdirectory)
20 # If definitions like -D_GNU_SOURCE are needed for these checks they
21 # should be added to _KDE4_PLATFORM_DEFINITIONS when it is originally
22 # defined outside this file.  Here we include these definitions in
23 # CMAKE_REQUIRED_DEFINITIONS so they will be included in the build of
24 # checks below.
25 set(CMAKE_REQUIRED_DEFINITIONS ${_KDE4_PLATFORM_DEFINITIONS})
26 if (WIN32)
27    set(CMAKE_REQUIRED_LIBRARIES ${KDEWIN32_LIBRARIES} )
28    set(CMAKE_REQUIRED_INCLUDES  ${KDEWIN32_INCLUDES} )
29 endif (WIN32)
31 find_package(KdepimLibs REQUIRED)
32 find_package(QCA2)
33 find_package(JPEG)
34 find_package(X11VidMode)
35 find_package(Decibel)
36 find_package(IDN)
37 find_package(LibVNCServer)
39 macro_optional_find_package(DNSSD)
40 macro_optional_find_package(SLP)
41 macro_optional_find_package(IDN)
42 macro_optional_find_package(LibVNCServer)
44 macro_log_feature(LIBVNCSERVER_FOUND   "libvncserver" "VNC Server lib, needed to build krfb"       "http://libvncserver.sourceforge.net/")
45 macro_log_feature(DNSSD_FOUND   "libdnssd" "Support for Zeroconf, needed to build dnssd"       "http://www.zeroconf.org")
46 macro_log_feature(QCA2_FOUND    "libqca2"  "Qca2 is needed to build some parts of kopete"              "Module into kdesupport" FALSE "2.0")
47 macro_log_feature(SLP_FOUND     "openslp"  "OpenSLP is needed to build krdc and krfb"         "http://www.openslp.org/")
48 macro_log_feature(DECIBEL_FOUND "Decibel"  "Decibel is the KDE framework for real-time communication" "HOWTO in kopete/protocols/telepathy")
49 macro_log_feature(IDN_FOUND   "libidn" "libidn provides International Domain Name Support for Kopete's Jabber plugin"       "http://www.gnu.org/software/libidn")
51 macro_bool_to_01(SLP_FOUND HAVE_SLP) # for both krfb and krdc
53 add_definitions (${QT_DEFINITIONS} ${QT_QTDBUS_DEFINITIONS} ${KDE4_DEFINITIONS})
54 include_directories (${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES})
56 macro_optional_add_subdirectory(doc)
57 macro_optional_add_subdirectory(kfile-plugins)
58 macro_optional_add_subdirectory(lanbrowsing)
59 macro_optional_add_subdirectory(kget)
61 if(Q_WS_X11)
63   find_package(Plasma)
64   macro_log_feature(PLASMA_FOUND "Plasma" "Plasma is a really cool replacement for kicker, needed for KNewsTicker" "Part of kdebase")
65   if(PLASMA_FOUND)
66     macro_optional_add_subdirectory(knewsticker)
67   endif(PLASMA_FOUND)
69   macro_optional_add_subdirectory(kppp)
71   if(LIBVNCSERVER_FOUND AND SLP_FOUND)
72     macro_optional_add_subdirectory(krfb)
73   endif(LIBVNCSERVER_FOUND AND SLP_FOUND)
75 endif(Q_WS_X11)
77 macro_optional_add_subdirectory(krdc)
79 if (DNSSD_FOUND)
80    macro_optional_add_subdirectory(kdnssd)
81 endif (DNSSD_FOUND)
83 macro_optional_add_subdirectory(kopete)
85 if(NOT WIN32)
86   macro_optional_add_subdirectory(filesharing)
87 endif(NOT WIN32)
89 macro_display_feature_log()