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
|
### the directory name
set(directory source/COMPARISON/SPECTRA)
### list all filenames of the directory here
set(sources_list
BinnedSharedPeakCount.C
BinnedSpectralContrastAngle.C
BinnedSpectrum.C
BinnedSpectrumCompareFunctor.C
BinnedSumAgreeingIntensities.C
CompareFouriertransform.C
PeakAlignment.C
PeakSpectrumCompareFunctor.C
SpectraSTSimilarityScore.C
SpectrumAlignment.C
SpectrumAlignmentScore.C
SpectrumCheapDPCorr.C
SpectrumPrecursorComparator.C
SteinScottImproveScore.C
ZhangSimilarityScore.C
)
### add path to the filenames
set(sources)
foreach(i ${sources_list})
list(APPEND sources ${directory}/${i})
endforeach(i)
### pass source file list to the upper instance
set(OpenMS_sources ${OpenMS_sources} ${sources})
### source group definition
source_group("Source Files\\COMPARISON\\SPECTRA" FILES ${sources})
|