File: meson.build

package info (click to toggle)
libbioparser-dev 3.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,932 kB
  • sloc: cpp: 1,275; makefile: 13
file content (20 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
###########
# Headers #
###########

bioparser_include_directories = include_directories(['.'])

if meson.is_subproject()
  subdir_done()
endif

install_headers(
  files([
    'bioparser/fasta_parser.hpp',
    'bioparser/fastq_parser.hpp',
    'bioparser/mhap_parser.hpp',
    'bioparser/paf_parser.hpp',
    'bioparser/parser.hpp',
    'bioparser/sam_parser.hpp',
  ]),
  subdir : 'bioparser')