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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2013-12-20 11:30:16 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131220113016-wre5g9bteeheq6he
Tags: 1.11.1-3
* remove version number from libbost development package names;
* ensure that AUTHORS is correctly shipped in all packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
### the directory name
 
2
set(directory include/OpenMS/INTERFACES)
 
3
 
 
4
### list all header files of the directory here
 
5
set(sources_list_h
 
6
DataStructures.h
 
7
ISpectrumAccess.h
 
8
)
 
9
 
 
10
### add path to the filenames
 
11
set(sources_h)
 
12
foreach(i ${sources_list_h})
 
13
        list(APPEND sources_h ${directory}/${i})
 
14
endforeach(i)
 
15
 
 
16
### source group definition
 
17
source_group("Header Files\\OpenMS\\INTERFACES" FILES ${sources_h})
 
18
 
 
19
set(OpenMS_sources_h ${OpenMS_sources_h} ${sources_h})
 
20