|
|
|
#################################################
|
|
|
|
#
|
|
|
|
# (C) 2011 Timothy Pearson
|
|
|
|
# kb9vqf (AT) pearsoncomputing.net
|
|
|
|
#
|
|
|
|
# Improvements and feedback are welcome
|
|
|
|
#
|
|
|
|
# This file is released under GPL >= 2
|
|
|
|
#
|
|
|
|
#################################################
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${TQT_INCLUDE_DIRS}
|
|
|
|
${CMAKE_SOURCE_DIR}
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}/tdecore
|
|
|
|
${CMAKE_SOURCE_DIR}/dcop
|
|
|
|
${CMAKE_SOURCE_DIR}/tdecore
|
|
|
|
${CMAKE_SOURCE_DIR}/tdeui
|
|
|
|
${CMAKE_SOURCE_DIR}/tdefx
|
|
|
|
${CMAKE_SOURCE_DIR}/tdeio
|
|
|
|
${CMAKE_SOURCE_DIR}/tdeio/tdeio
|
|
|
|
)
|
|
|
|
|
|
|
|
link_directories(
|
|
|
|
${TQT_LIBRARY_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
##### headers ###################################
|
|
|
|
|
|
|
|
install( FILES
|
|
|
|
tdersync.h
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/libtdersync )
|
|
|
|
|
|
|
|
|
|
|
|
##### tdersync ####################################
|
|
|
|
|
|
|
|
set( target tdersync )
|
|
|
|
|
|
|
|
set( ${target}_SRCS
|
|
|
|
tdersync.cpp rsyncconfigdialog.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
tde_add_library( ${target} SHARED AUTOMOC
|
|
|
|
SOURCES ${${target}_SRCS}
|
|
|
|
VERSION 0.0.1
|
|
|
|
LINK tdeui-shared tdeio-shared
|
|
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
|
|
)
|