2016-06-28 12:21:56 +02:00
|
|
|
project('spa', 'c')
|
|
|
|
|
|
|
|
|
|
alsa_dep = dependency('alsa')
|
2016-07-05 17:58:34 +02:00
|
|
|
v4l2_dep = dependency('libv4l2')
|
2016-07-07 09:30:18 +02:00
|
|
|
xv_dep = dependency('x11')
|
2016-07-07 11:31:52 +02:00
|
|
|
sdl_dep = dependency('sdl2')
|
2016-07-13 18:29:55 +02:00
|
|
|
avcodec_dep = dependency('libavcodec')
|
|
|
|
|
avformat_dep = dependency('libavformat')
|
|
|
|
|
avfilter_dep = dependency('libavfilter')
|
|
|
|
|
libva_dep = dependency('libva')
|
2016-09-15 11:49:34 +02:00
|
|
|
libudev_dep = dependency('libudev')
|
2016-09-09 15:15:49 +02:00
|
|
|
threads_dep = dependency('threads')
|
2016-07-08 12:18:01 +02:00
|
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
|
|
|
|
|
dl_lib = cc.find_library('dl', required : true)
|
|
|
|
|
pthread_lib = cc.find_library('pthread', required : true)
|
2016-06-28 12:21:56 +02:00
|
|
|
|
|
|
|
|
inc = include_directories('include')
|
|
|
|
|
|
|
|
|
|
subdir('include')
|
|
|
|
|
subdir('lib')
|
|
|
|
|
subdir('plugins')
|
|
|
|
|
subdir('tools')
|
|
|
|
|
subdir('tests')
|