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

« back to all changes in this revision

Viewing changes to include/OpenMS/FORMAT/VALIDATORS/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/FORMAT/VALIDATORS)
 
3
 
 
4
### list all header files of the directory here
 
5
set(sources_list_h
 
6
XMLValidator.h
 
7
MzMLValidator.h
 
8
MzDataValidator.h
 
9
SemanticValidator.h
 
10
MzIdentMLValidator.h
 
11
TraMLValidator.h
 
12
)
 
13
 
 
14
### add path to the filenames
 
15
set(sources_h)
 
16
foreach(i ${sources_list_h})
 
17
        list(APPEND sources_h ${directory}/${i})
 
18
endforeach(i)
 
19
 
 
20
### source group definition
 
21
source_group("Header Files\\OpenMS\\FORMAT\\VALIDATORS" FILES ${sources_h})
 
22
 
 
23
set(OpenMS_sources_h ${OpenMS_sources_h} ${sources_h})
 
24