You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.9 KiB
72 lines
1.9 KiB
14 years ago
|
#################################################
|
||
|
#
|
||
|
# (C) 2010 Serghei Amelian
|
||
|
# serghei (DOT) amelian (AT) gmail.com
|
||
|
#
|
||
|
# Improvements and feedback are welcome
|
||
|
#
|
||
|
# This file is released under GPL >= 2
|
||
|
#
|
||
|
#################################################
|
||
|
|
||
|
add_definitions(
|
||
|
-D_LARGEFILE64_SOURCE=1
|
||
|
)
|
||
|
|
||
|
add_subdirectory( kssl )
|
||
12 years ago
|
add_subdirectory( tdeio )
|
||
14 years ago
|
add_subdirectory( bookmarks )
|
||
12 years ago
|
add_subdirectory( tdefile )
|
||
14 years ago
|
add_subdirectory( pics )
|
||
12 years ago
|
add_subdirectory( tdeioexec )
|
||
14 years ago
|
add_subdirectory( httpfilter )
|
||
|
add_subdirectory( misc )
|
||
|
add_subdirectory( kpasswdserver )
|
||
|
add_subdirectory( tests )
|
||
|
|
||
14 years ago
|
include_directories(
|
||
|
${TQT_INCLUDE_DIRS}
|
||
|
)
|
||
14 years ago
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
13 years ago
|
${LIBR_LIBDIR}
|
||
14 years ago
|
)
|
||
|
|
||
|
|
||
|
##### other data ################################
|
||
|
|
||
|
install( FILES magic DESTINATION ${MIME_INSTALL_DIR} )
|
||
|
|
||
|
install( FILES
|
||
|
application.desktop kurifilterplugin.desktop
|
||
|
kcomprfilter.desktop kscan.desktop kdatatool.desktop
|
||
12 years ago
|
tdefileplugin.desktop tdecmodule.desktop
|
||
14 years ago
|
DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|
||
14 years ago
|
|
||
12 years ago
|
install( FILES tdeioslave.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||
14 years ago
|
install( PROGRAMS useragent.pl proxytype.pl DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||
|
install( FILES renamedlgplugin.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|
||
14 years ago
|
install( FILES kpasswdserver.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded )
|
||
|
install( FILES data.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
|
||
|
|
||
|
|
||
13 years ago
|
if( HAVE_ELFICON )
|
||
|
set( ELFICON_STATIC_LIB tdelficon-static )
|
||
|
endif( HAVE_ELFICON )
|
||
|
|
||
|
|
||
12 years ago
|
##### libtdeio ####################################
|
||
14 years ago
|
|
||
12 years ago
|
set( target tdeio )
|
||
14 years ago
|
|
||
|
configure_file( ${CMAKE_SOURCE_DIR}/cmake/modules/template_dummy_cpp.cmake dummy.cpp COPYONLY )
|
||
|
|
||
|
tde_add_library( ${target} SHARED
|
||
|
SOURCES ${CMAKE_CURRENT_BINARY_DIR}/dummy.cpp
|
||
|
VERSION 4.2.0
|
||
12 years ago
|
EMBED kssl-static tdeiocore-static tdesycoca-static kbookmarks-static tdefile-static ${ELFICON_STATIC_LIB}
|
||
12 years ago
|
LINK ltdlc-static tdeui-shared tdesu-shared tdewalletclient-shared ${LIBR_LIBRARIES}
|
||
14 years ago
|
DESTINATION ${LIB_INSTALL_DIR}
|
||
|
)
|