blob: aa9f410575dec4d63f9da455b88c211fb0e96429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#################################################
#
# (C) 2010-2011 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
project( twin )
add_subdirectory( lib )
add_subdirectory( killer )
add_subdirectory( resumer )
add_subdirectory( kcmtwin )
add_subdirectory( pics )
add_subdirectory( clients )
add_subdirectory( oldheaders )
add_subdirectory( data )
tde_conditional_add_subdirectory( WITH_XCOMPOSITE kompmgr )
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/lib
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### headers ###################################
install( FILES KWinInterface.h DESTINATION ${INCLUDE_INSTALL_DIR} )
##### other data ################################
tde_install_icons( twin )
install( FILES eventsrc DESTINATION ${DATA_INSTALL_DIR}/twin )
install( FILES twin.kcfg DESTINATION ${KCFG_INSTALL_DIR} )
##### twin (tdeinit) ############################
set( target twin )
set( ${target}_SRCS
workspace.cpp client.cpp placement.cpp atoms.cpp
utils.cpp layers.cpp main.cpp popupinfo.cpp tabbox.cpp
options.cpp plugins.cpp events.cpp KWinInterface.skel
killwindow.cpp geometrytip.cpp sm.cpp group.cpp bridge.cpp
manage.cpp notifications.cpp activation.cpp useractions.cpp
geometry.cpp rules.cpp
)
tde_add_tdeinit_executable( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK tdecorations-shared tdeui-shared Xext
)
##### install import cmake modules ###############
tde_install_export( )
|