summaryrefslogtreecommitdiff
path: root/spa/meson.build
blob: 50ac8204f2003b02888b16f871dc77299c547383 (plain)
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
#project('spa', 'c')

alsa_dep = dependency('alsa')
v4l2_dep = dependency('libv4l2')
xv_dep = dependency('x11')
sdl_dep = dependency('sdl2')
avcodec_dep = dependency('libavcodec')
avformat_dep = dependency('libavformat')
avfilter_dep = dependency('libavfilter')
libva_dep = dependency('libva')
libudev_dep = dependency('libudev')
threads_dep = dependency('threads')

cc = meson.get_compiler('c')

dl_lib = cc.find_library('dl', required : true)
pthread_lib = cc.find_library('pthread', required : true)

spa_inc = include_directories('include')
spa_libinc = include_directories('.')

subdir('include')
subdir('lib')
subdir('plugins')
subdir('tools')
subdir('tests')