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

« back to all changes in this revision

Viewing changes to include/OpenMS/CHEMISTRY/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/CHEMISTRY)
 
3
 
 
4
### list all header files of the directory here
 
5
set(sources_list_h
 
6
AASequence.h
 
7
EdwardsLippertIterator.h
 
8
EdwardsLippertIteratorTryptic.h
 
9
Element.h
 
10
ElementDB.h
 
11
EmpiricalFormula.h
 
12
EnzymaticDigestion.h
 
13
IsotopeDistribution.h
 
14
ModificationDefinition.h
 
15
ModificationDefinitionsSet.h
 
16
ModificationsDB.h
 
17
ModifierRep.h
 
18
PepIterator.h
 
19
Residue.h
 
20
ResidueDB.h
 
21
ResidueModification.h
 
22
TheoreticalSpectrumGenerator.h
 
23
SvmTheoreticalSpectrumGenerator.h
 
24
SvmTheoreticalSpectrumGeneratorSet.h
 
25
SvmTheoreticalSpectrumGeneratorTrainer.h
 
26
TrypticIterator.h
 
27
AAIndex.h
 
28
WeightWrapper.h
 
29
)
 
30
 
 
31
### add path to the filenames
 
32
set(sources_h)
 
33
foreach(i ${sources_list_h})
 
34
        list(APPEND sources_h ${directory}/${i})
 
35
endforeach(i)
 
36
 
 
37
### source group definition
 
38
source_group("Header Files\\OpenMS\\CHEMISTRY" FILES ${sources_h})
 
39
 
 
40
set(OpenMS_sources_h ${OpenMS_sources_h} ${sources_h})
 
41