You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
542 B

# Clone video splitter
vlc_modules += {
'name' : 'clone',
'sources' : files('clone.c')
}
# Wall video splitter
vlc_modules += {
'name' : 'wall',
'sources' : files('wall.c')
}
if xcb_dep.found() and xcb_randr_dep.found()
vlc_modules += {
'name' : 'panoramix',
'sources' : files('panoramix.c'),
'dependencies' : [xcb_dep, xcb_randr_dep]
}
elif host_system == 'windows' and have_win_desktop
vlc_modules += {
'name' : 'panoramix',
'sources' : files('panoramix.c')
}
endif