/usr/include/OpenMS/VISUAL/ANNOTATION/sources.cmake is in libopenms-dev 1.11.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ### the directory name
set(directory include/OpenMS/VISUAL/ANNOTATION)
### list all header files of the directory here
set(sources_list_h
Annotation1DDistanceItem.h
Annotation1DItem.h
Annotation1DPeakItem.h
Annotation1DTextItem.h
Annotations1DContainer.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\\VISUAL\\ANNOTATION" FILES ${sources_h})
set(OpenMSVisual_sources_h ${OpenMSVisual_sources_h} ${sources_h})
|