~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to include/OpenMS/VISUAL/sources.cmake

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2012-11-12 15:58:12 UTC
  • Revision ID: package-import@ubuntu.com-20121112155812-vr15wtg9b50cuesg
Tags: upstream-1.9.0
ImportĀ upstreamĀ versionĀ 1.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
### the directory name
 
2
set(directory include/OpenMS/VISUAL)
 
3
 
 
4
### list all MOC filenames of the directory here
 
5
set(sources_list
 
6
AxisWidget.h
 
7
ColorSelector.h
 
8
EnhancedTabBar.h
 
9
HistogramWidget.h
 
10
MetaDataBrowser.h
 
11
MultiGradientSelector.h
 
12
ParamEditor.h
 
13
SpectraViewWidget.h
 
14
SpectraIdentificationViewWidget.h
 
15
Spectrum1DCanvas.h
 
16
Spectrum1DWidget.h
 
17
Spectrum2DCanvas.h
 
18
Spectrum2DWidget.h
 
19
Spectrum3DCanvas.h
 
20
Spectrum3DOpenGLCanvas.h
 
21
Spectrum3DWidget.h
 
22
SpectrumCanvas.h
 
23
SpectrumWidget.h
 
24
ListEditor.h
 
25
TOPPASWidget.h
 
26
TOPPASScene.h
 
27
TOPPASVertex.h
 
28
TOPPASToolVertex.h
 
29
TOPPASInputFileListVertex.h
 
30
TOPPASOutputFileListVertex.h
 
31
TOPPASMergerVertex.h
 
32
TOPPASEdge.h
 
33
TOPPASTabBar.h
 
34
TOPPASTreeView.h
 
35
TOPPASResource.h
 
36
TOPPASResources.h
 
37
TOPPViewBehaviorInterface.h
 
38
TOPPViewSpectraViewBehavior.h
 
39
TOPPViewIdentificationViewBehavior.h
 
40
EnhancedWorkspace.h
 
41
EnhancedTabBarWidgetInterface.h
 
42
)
 
43
 
 
44
### add path to the filenames
 
45
set(sources)
 
46
foreach(i ${sources_list})
 
47
  list(APPEND sources ${directory}/${i})
 
48
endforeach(i)
 
49
 
 
50
### Apply MOC compiler
 
51
QT4_WRAP_CPP(mocced_sources ${sources})
 
52
 
 
53
### pass source file list to the upper instance
 
54
set(OpenMSVisual_sources ${OpenMSVisual_sources} ${mocced_sources})
 
55
 
 
56
source_group("Source Files\\OpenMS\\VISUAL" FILES ${mocced_sources})
 
57
 
 
58
### list all header files of the directory here
 
59
set(sources_list_h
 
60
AxisTickCalculator.h
 
61
AxisPainter.h
 
62
AxisWidget.h
 
63
ColorSelector.h
 
64
EnhancedTabBar.h
 
65
HistogramWidget.h
 
66
LayerData.h
 
67
MetaDataBrowser.h
 
68
MultiGradient.h
 
69
MultiGradientSelector.h
 
70
ParamEditor.h
 
71
SpectraViewWidget.h
 
72
SpectraIdentificationViewWidget.h
 
73
Spectrum1DCanvas.h
 
74
Spectrum1DWidget.h
 
75
Spectrum2DCanvas.h
 
76
Spectrum2DWidget.h
 
77
Spectrum3DCanvas.h
 
78
Spectrum3DOpenGLCanvas.h
 
79
Spectrum3DWidget.h
 
80
SpectrumCanvas.h
 
81
SpectrumWidget.h
 
82
ListEditor.h
 
83
TOPPASWidget.h
 
84
TOPPASScene.h
 
85
TOPPASVertex.h
 
86
TOPPASToolVertex.h
 
87
TOPPASInputFileListVertex.h
 
88
TOPPASOutputFileListVertex.h
 
89
TOPPASMergerVertex.h
 
90
TOPPASEdge.h
 
91
TOPPASTabBar.h
 
92
TOPPASTreeView.h
 
93
TOPPASResource.h
 
94
TOPPASResources.h
 
95
TOPPViewBehaviorInterface.h
 
96
TOPPViewIdentificationViewBehavior.h
 
97
TOPPViewSpectraViewBehavior.h
 
98
EnhancedWorkspace.h
 
99
EnhancedTabBarWidgetInterface.h
 
100
)
 
101
 
 
102
### add path to the filenames
 
103
set(sources_h)
 
104
foreach(i ${sources_list_h})
 
105
        list(APPEND sources_h ${directory}/${i})
 
106
endforeach(i)
 
107
 
 
108
### source group definition
 
109
source_group("Header Files\\OpenMS\\VISUAL" FILES ${sources_h})
 
110
 
 
111
set(OpenMSVisual_sources_h ${OpenMSVisual_sources_h} ${sources_h})