File: executables.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 (47 lines) | stat: -rw-r--r-- 1,126 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
39
40
41
42
43
44
45
46
47
### the directory name
set(directory source/EXAMPLES)

### list all filenames of the directory here
set(executables_list
Tutorial_AASequence
Tutorial_Clustering
Tutorial_ComparatorUtils
Tutorial_DPosition
Tutorial_DRange
Tutorial_Element
Tutorial_EmpiricalFormula
Tutorial_FeatureFinder
Tutorial_FeatureMap
Tutorial_FileIO
Tutorial_GaussFilter
Tutorial_InternalCalibration
Tutorial_Labeled
Tutorial_MSExperiment
Tutorial_MSSpectrum
Tutorial_MapAlignment
Tutorial_MetaInfo
Tutorial_Param
Tutorial_GUI_ParamEditor
Tutorial_PeakPickerCWT
Tutorial_RangeManager
Tutorial_Residue
Tutorial_SavitzkyGolayFilter
Tutorial_GUI_Spectrum1D
Tutorial_TOFCalibration
Tutorial_TheoreticalSpectrumGenerator
Tutorial_MorphologicalFilter
Tutorial_Unlabeled
Tutorial_typeAsString
Tutorial_GUI_ListEditor
Tutorial_PeakIntensityPredictor
)

### pass source file list to the upper instance
set(EXAMPLES_executables ${EXAMPLES_executables} ${executables_list})

### add filenames to Visual Studio solution tree
set(sources_VS)
foreach(i ${executables_list})
	list(APPEND sources_VS "${i}.C")
endforeach(i)
source_group("EXAMPLES" FILES ${sources_VS})