mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
17 lines
387 B
CMake
17 lines
387 B
CMake
set(kio_ldap_PART_SRCS kio_ldap.cpp)
|
|
|
|
|
|
include_directories(
|
|
${CMAKE_BINARY_DIR}/kldap
|
|
)
|
|
|
|
kde4_add_plugin(kio_ldap ${kio_ldap_PART_SRCS})
|
|
|
|
target_link_libraries(kio_ldap ${KDE4_KIO_LIBS} kldap)
|
|
|
|
install(TARGETS kio_ldap DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES ldap.protocol ldaps.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
|