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

« back to all changes in this revision

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