summaryrefslogtreecommitdiffstats
path: root/kioslave/ldap
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/ldap')
-rw-r--r--kioslave/ldap/CMakeLists.txt37
-rw-r--r--kioslave/ldap/ConfigureChecks.cmake21
2 files changed, 58 insertions, 0 deletions
diff --git a/kioslave/ldap/CMakeLists.txt b/kioslave/ldap/CMakeLists.txt
new file mode 100644
index 000000000..ebf162205
--- /dev/null
+++ b/kioslave/ldap/CMakeLists.txt
@@ -0,0 +1,37 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include( ConfigureChecks.cmake )
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### other data ################################
+
+install( FILES ldap.protocol ldaps.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
+
+
+##### kio_ldap (module) #########################
+
+tde_add_kpart( kio_ldap AUTOMOC
+ SOURCES kio_ldap.cpp
+ LINK kabc-shared ${LDAP_LIBRARIES}
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
diff --git a/kioslave/ldap/ConfigureChecks.cmake b/kioslave/ldap/ConfigureChecks.cmake
new file mode 100644
index 000000000..9515a3d69
--- /dev/null
+++ b/kioslave/ldap/ConfigureChecks.cmake
@@ -0,0 +1,21 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+check_include_file( ldap.h HAVE_LDAP_H )
+
+if( HAVE_LDAP_H )
+ set( LDAP_LIBRARIES ldap )
+ check_library_exists( ${LDAP_LIBRARIES} ldap_initialize "" HAVE_LDAP )
+endif( )
+
+if( NOT HAVE_LDAP_H OR NOT HAVE_LDAP )
+ tde_message_fatal( "ldap is requested, but was not found on your system." )
+endif( )