23 lines
990 B
Meson
23 lines
990 B
Meson
# Copyright (C) 2025 Johannes Randerath
|
|
#
|
|
# This file is part of FancyBirds.
|
|
# Fancybirds is free software: you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Fancybirds is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# Foobar. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
project('fancybirds', 'c')
|
|
gstdep = dependency('gstreamer-1.0')
|
|
inihdep = dependency('inih')
|
|
executable('stream_source', 'stream_source.c', dependencies : [gstdep, inihdep])
|
|
doxygen = find_program('doxygen')
|
|
run_target('docs', command: [doxygen, meson.project_source_root() + '/Doxyfile'])
|