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

Add meson build system

Use it as:

    $ meson build
    $ cd build
    $ ninja build
    $ ninja test
    $ sudo ninja install
This commit is contained in:
Derek Dai 2017-04-03 12:12:50 +08:00 committed by albfan
parent fe9a39bee8
commit 6b5907ad45
11 changed files with 190 additions and 0 deletions

8
res/meson.build Normal file
View file

@ -0,0 +1,8 @@
install_data(
'org.freedesktop.miracle.conf',
install_dir: join_paths(get_option('sysconfdir'), 'dbus-1', 'system.d')
)
install_data('miracle-gst', 'gstplayer', 'uibc-viewer',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x')