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.
64 lines
1.3 KiB
64 lines
1.3 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
|
||
|
#
|
||
|
#################################################
|
||
|
|
||
|
include_directories(
|
||
|
${TQT_INCLUDE_DIRS}
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${CMAKE_BINARY_DIR}
|
||
13 years ago
|
${CMAKE_BINARY_DIR}/tdecore
|
||
14 years ago
|
${CMAKE_SOURCE_DIR}
|
||
|
${CMAKE_SOURCE_DIR}/dcop
|
||
13 years ago
|
${CMAKE_SOURCE_DIR}/tdecore
|
||
|
${CMAKE_SOURCE_DIR}/tdeui
|
||
14 years ago
|
)
|
||
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### other data ################################
|
||
|
|
||
|
install( FILES kcookiejar.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded )
|
||
14 years ago
|
install( FILES kcookiescfg.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||
12 years ago
|
install( FILES domain_info DESTINATION ${DATA_INSTALL_DIR}/tdehtml )
|
||
14 years ago
|
|
||
|
|
||
|
##### kcookiejar ################################
|
||
|
|
||
|
set( target kcookiejar )
|
||
|
|
||
|
set( ${target}_SRCS
|
||
|
main.cpp
|
||
|
)
|
||
|
|
||
13 years ago
|
tde_add_tdeinit_executable( ${target} AUTOMOC
|
||
14 years ago
|
SOURCES ${${target}_SRCS}
|
||
13 years ago
|
LINK tdecore-shared
|
||
14 years ago
|
)
|
||
|
|
||
|
|
||
|
##### kded_kcookiejar ###########################
|
||
|
|
||
|
set( target kded_kcookiejar )
|
||
|
|
||
|
set( ${target}_SRCS
|
||
|
kcookiejar.cpp kcookieserver.cpp kcookiewin.cpp
|
||
|
kcookieserver.skel
|
||
|
)
|
||
|
|
||
|
tde_add_kpart( ${target} AUTOMOC
|
||
|
SOURCES ${${target}_SRCS}
|
||
13 years ago
|
LINK tdeui-shared tdeinit_kded-shared
|
||
14 years ago
|
DEPENDENCIES dcopidl
|
||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||
|
)
|