File: sources.cmake

package info (click to toggle)
openms 1.11.1-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 436,688 kB
  • ctags: 150,907
  • sloc: cpp: 387,126; xml: 71,547; python: 7,764; ansic: 2,626; php: 2,499; sql: 737; ruby: 342; sh: 325; makefile: 128
file content (38 lines) | stat: -rw-r--r-- 756 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
### the directory name
set(directory include/OpenMS/CONCEPT)

### list all header files of the directory here
set(sources_list_h
ClassTest.h
Constants.h
Exception.h
Factory.h
FactoryBase.h
FuzzyStringComparator.h
GlobalExceptionHandler.h
LogStream.h
LogConfigHandler.h
Macros.h
ProgressLogger.h
SingletonRegistry.h
StreamHandler.h
Types.h
UniqueIdGenerator.h
UniqueIdInterface.h
UniqueIdIndexer.h
VersionInfo.h
BinaryComposeFunctionAdapter.h
UnaryComposeFunctionAdapter.h
)

### add path to the filenames
set(sources_h)
foreach(i ${sources_list_h})
	list(APPEND sources_h ${directory}/${i})
endforeach(i)

### source group definition
source_group("Header Files\\OpenMS\\CONCEPT" FILES ${sources_h})

set(OpenMS_sources_h ${OpenMS_sources_h} ${sources_h})