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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
### the directory name
set(directory source/APPLICATIONS/UTILS)
### list all filenames of the directory here
set(UTILS_executables
AccurateMassSearch
CVInspector
DeMeanderize
DecoyDatabase
Digestor
DigestorMotif
ERPairFinder
FeatureFinderSuperHirn
FFEval
FuzzyDiff
IDEvaluator
IDExtractor
IDMassAccuracy
IDSplitter
IDDecoyProbability
RTEvaluation
ImageCreator
INIUpdater
LabeledEval
MassCalculator
MRMPairFinder
MSSimulator
MapAlignmentEvaluation
OpenMSInfo
SemanticValidator
SequenceCoverageCalculator
SpecLibCreator
SvmTheoreticalSpectrumGeneratorTrainer
TransformationEvaluation
XMLValidator
QCCalculator
QCImporter
QCEmbedder
QCExporter
QCExtractor
QCMerger
QCShrinker
RNPxl
RNPxlXICFilter
)
if(NOT DISABLE_OPENSWATH)
set(UTILS_executables
${UTILS_executables}
ConvertTSVToTraML
ConvertTraMLToTSV
OpenSwathDIAPreScoring
OpenSwathMzMLFileCacher
OpenSwathRewriteToFeatureXML
)
endif(NOT DISABLE_OPENSWATH)
## all targets with need linkage against OpenMS_GUI.lib - they also need to appear in the list above)
set(UTILS_executables_with_GUIlib
IDEvaluator
ImageCreator
INIUpdater
)
### add filenames to Visual Studio solution tree
set(sources_VS)
foreach(i ${UTILS_executables})
list(APPEND sources_VS "${i}.C")
endforeach(i)
source_group("" FILES ${sources_VS})
|