blob: bbee4cdb6e75d43279bb676c37c3dc127dbf1d61 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
#################################################
#
# (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}
${TDE_INCLUDE_DIR}
${CMAKE_BINARY_DIR}
${CMAKE_BINARY_DIR}/src
${CMAKE_SOURCE_DIR}/src
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/src/svnfrontend/fronthelpers
${CMAKE_BINARY_DIR}/src/svnqt
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### svnfrontend ###############################
tde_add_library( svnfrontend STATIC AUTOMOC
SOURCES ccontextlistener.cpp
commandexec.cpp
copymoveview_impl.cpp
createrepo_impl.cpp
dummydisplay.cpp
dumprepo_impl.cpp
editproperty_impl.cpp
filelistviewitem.cpp
fronthelpers/checkoutinfo_impl.cpp
fronthelpers/checkoutinfo_impl.h
fronthelpers/rangeinput_impl.cpp
fronthelpers/rangeinput_impl.h
fronthelpers/revisionbuttonimpl.cpp
fronthelpers/revisionbuttonimpl.h
fronthelpers/cursorstack.h
fronthelpers/widgetblockstack.cpp
fronthelpers/widgetblockstack.h
fronthelpers/propertylist.cpp
fronthelpers/propertylist.h
fronthelpers/propertyitem.cpp
fronthelpers/propertyitem.h
graphtree/drawparams.cpp
graphtree/drawparams.h
graphtree/elogentry.cpp
graphtree/elogentry.h
graphtree/graphtreelabel.cpp
graphtree/graphtreelabel.h
graphtree/pannerview.cpp
graphtree/pannerview.h
graphtree/revgraphview.cpp
graphtree/revgraphview.h
graphtree/revisiontree.cpp
graphtree/revisiontree.h
graphtree/revtreewidget.cpp
graphtree/revtreewidget.h
hotcopydlg_impl.cpp
importdir_logmsg.cpp
itemdisplay.cpp
tdesvnfilelist.cpp
keystatus.cpp
loaddmpdlg_impl.cpp
mergedlg_impl.cpp
modifiedthread.cpp
opencontextmenu.cpp
propertiesdlg.cpp
stopdlg.cpp
svnactions.cpp
svnfiletip.cpp
svnitem.cpp
svnlogdlgimp.cpp
tcontextlistener.cpp
blamedisplay_impl.cpp
threadcontextlistenerdata.cpp
fillcachethread.cpp
fillcachethread.h
copymoveview.ui
createrepo_dlg.ui
dumprepo_dlg.ui
editpropsdlg.ui
fronthelpers/checkoutinfo.ui
fronthelpers/rangeinput.ui
fronthelpers/revisionbutton.ui
hotcopydlg.ui
loaddmpdlg.ui
merge_dlg.ui
blamedisplay.ui
svnlogdlg.ui
# LINK kio-shared
DESTINATION ${LIB_INSTALL_DIR}
)
# ADD_DEPENDENCIES(svnfrontend ksvnwidgets)
|