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.
59 lines
1.5 KiB
59 lines
1.5 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
if( NOT BUILD_LIBKONQ )
|
|
include( "${TDE_CMAKE_DIR}/libkonq.cmake" )
|
|
endif( NOT BUILD_LIBKONQ )
|
|
|
|
add_subdirectory( core )
|
|
add_subdirectory( interfaces )
|
|
add_subdirectory( ui )
|
|
add_subdirectory( buttons )
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/libkonq
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS} )
|
|
|
|
link_directories( ${TQT_LIBRARY_DIRS} )
|
|
|
|
|
|
##### other data ################################
|
|
|
|
install( FILES panel.desktop DESTINATION ${AUTOSTART_INSTALL_DIR} )
|
|
install( FILES kcmkicker.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
|
|
install( FILES kickerrc.upd DESTINATION ${DATA_INSTALL_DIR}/kconf_update )
|
|
|
|
install( PROGRAMS
|
|
kicker-3.1-properSizeSetting.pl kicker-3.5-taskbarEnums.pl
|
|
kicker-3.5-kconfigXTize.pl
|
|
DESTINATION ${DATA_INSTALL_DIR}/kconf_update )
|
|
|
|
|
|
##### kicker-3.4-reverseLayout (executable) #####
|
|
|
|
tde_add_executable( kicker-3.4-reverseLayout
|
|
SOURCES kicker-3.4-reverseLayout.cpp
|
|
LINK tdecore-shared
|
|
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
|
|
)
|
|
|
|
|
|
##### kicker (tdeinit) ##########################
|
|
|
|
configure_file( ${CMAKE_SOURCE_DIR}/cmake/modules/template_dummy_cpp.cmake dummy.cpp COPYONLY )
|
|
|
|
tde_add_tdeinit_executable( kicker
|
|
SOURCES dummy.cpp
|
|
EMBED kicker_core-static
|
|
LINK kicker_buttons-static kicker_ui-static kickermain-shared kabc-shared kutils-shared
|
|
)
|