1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

miracle-disp: extracting encoder, part1

Change-Id: Ic9293e9cf379d352c75701834f17fa553f0bf52d
This commit is contained in:
Derek Dai 2017-04-12 17:03:46 +08:00
parent 8aacea933d
commit 6719f8795b
7 changed files with 562 additions and 279 deletions

View file

@ -42,3 +42,11 @@ install_data(
install_data('miracle-gst', 'gstplayer', 'uibc-viewer',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x')
add_languages('vala')
gio2 = dependency('gio-2.0')
gst1 = dependency('gstreamer-1.0')
gst1_base = dependency('gstreamer-base-1.0')
executable('gstencoder', 'gstencoder.vala',
dependencies: [gst1, gst1_base, gio2],
install: true)