diff options
author | Timothy Pearson <[email protected]> | 2013-01-26 13:17:46 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-26 13:17:46 -0600 |
commit | 48087e1d5650499b6093a6816356d467c8461802 (patch) | |
tree | 00c39f978492596620df1374e8a91af507d8bac3 /tdednssd/ioslave/CMakeLists.txt | |
parent | ccfaeb9b831a41e93e777b041cdf33a7d40a0e0b (diff) | |
download | tdenetwork-48087e1d5650499b6093a6816356d467c8461802.tar.gz tdenetwork-48087e1d5650499b6093a6816356d467c8461802.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tdednssd/ioslave/CMakeLists.txt')
-rw-r--r-- | tdednssd/ioslave/CMakeLists.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tdednssd/ioslave/CMakeLists.txt b/tdednssd/ioslave/CMakeLists.txt new file mode 100644 index 00000000..6a37a49a --- /dev/null +++ b/tdednssd/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 tdednssd-shared kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |