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

« back to all changes in this revision

Viewing changes to source/KERNEL/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 source/KERNEL)
 
3
 
 
4
### list all filenames of the directory here
 
5
set(sources_list
 
6
AreaIterator.C
 
7
BaseFeature.C
 
8
ConsensusFeature.C
 
9
ConsensusMap.C
 
10
DPeak.C
 
11
DRichPeak.C
 
12
Feature.C
 
13
FeatureHandle.C
 
14
FeatureMap.C
 
15
MassTrace.C
 
16
MSExperiment.C
 
17
MSSpectrum.C
 
18
Peak1D.C
 
19
Peak2D.C
 
20
PeakIndex.C
 
21
RangeManager.C
 
22
RichPeak1D.C
 
23
RichPeak2D.C
 
24
StandardTypes.C
 
25
ChromatogramPeak.C
 
26
MSChromatogram.C
 
27
ChromatogramTools.C
 
28
)
 
29
 
 
30
### add path to the filenames
 
31
set(sources)
 
32
foreach(i ${sources_list})
 
33
        list(APPEND sources ${directory}/${i})
 
34
endforeach(i)
 
35
 
 
36
### pass source file list to the upper instance
 
37
set(OpenMS_sources ${OpenMS_sources} ${sources})
 
38
 
 
39
### source group definition
 
40
source_group("Source Files\\KERNEL" FILES ${sources})
 
41