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

5
src/uibc/meson.build Normal file
View file

@ -0,0 +1,5 @@
m = c_compiler.find_library('m', required: false)
executable('miracle-uibcctl', 'miracle-uibcctl.h', 'miracle-uibcctl.c',
install: true,
dependencies: [m, libmiracle_shared_dep]
)