diff options
Diffstat (limited to 'kdnssd/ioslave/CMakeLists.txt')
-rw-r--r-- | kdnssd/ioslave/CMakeLists.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/kdnssd/ioslave/CMakeLists.txt b/kdnssd/ioslave/CMakeLists.txt new file mode 100644 index 00000000..f999dff5 --- /dev/null +++ b/kdnssd/ioslave/CMakeLists.txt @@ -0,0 +1,44 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES + zeroconf.protocol invitation.protocol + DESTINATION ${SERVICES_INSTALL_DIR} ) + +install( FILES + _http._tcp _ftp._tcp _ldap._tcp _webdav._tcp _nfs._tcp _ssh._tcp + DESTINATION ${DATA_INSTALL_DIR}/zeroconf ) + +install( FILES + zeroconf.desktop + DESTINATION ${DATA_INSTALL_DIR}/remoteview ) + + +##### kio_zeroconf (module) ##################### + +tde_add_kpart( kio_zeroconf AUTOMOC + SOURCES dnssd.cpp + LINK kdnssd-shared kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |